Well you could always right clickwhat would I do without cmd + c, cmd + v![]()
..unless you have to pay another 500$ to add that to a macbook..
Well you could always right clickwhat would I do without cmd + c, cmd + v![]()
Well, make it $20, for the mouse that is. Its a bluetooth one (not wifi) and does the job just fine in mac..unless you have to pay another 500$ to add that to a macbook..
Same lol, 15$ Trust silent mouse FTWWell, make it $20, for the mouse that is. Its a bluetooth one (not wifi) and does the job just fine in mac![]()
add_filter( 'the_title', 'h1_capital', 10, 2 );
function h1_capital( $title, $id = null ) {
return ucwords(strtolower($title));
}
add_filter( 'the_content', 'replace_capital', 1);
function replace_capital($content){
$content = preg_replace_callback('#<h([2-6])>(.*?)<\/h[2-6]>#si', function($m) {
return '<h' . $m[1] . '>' . ucfirst(strtolower($m[2])) . '</h' . $m[1] . '>';
}, $content);
return $content;
}