StefanoGiliberti
says
Black Metal, Death Metal, Progressive Metal, Doom Metal, Electronic, Folk, Indie Rock.
StefanoGiliberti
says
Helvetica Neue / Georgia
StefanoGiliberti
says
19
StefanoGiliberti
says
Nice job! Love MobilyBlocks 
StefanoGiliberti
says
2, 4, 5 
StefanoGiliberti
says
function formatter($content) {
$new_content = '';
$pattern_full = '{(\[raw\].*?\[/raw\])}is';
$pattern_contents = '{\[raw\](.*?)\[/raw\]}is';
$pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);
foreach ($pieces as $piece) {
if (preg_match($pattern_contents, $piece, $matches)) {
$new_content .= $matches[1];
} else {
$new_content .= wptexturize(wpautop($piece));
}
}
return $new_content;
}
remove_filter('the_content', 'wpautop');
remove_filter('the_content', 'wptexturize');
add_filter('the_content', 'formatter', 99);
[raw]Content without Paragraphs[/raw]
StefanoGiliberti
says
100% self-taught from online resources.
Enova said
School and university sucks in italy. That’s all.
Concordo 
StefanoGiliberti
says
Espresso
StefanoGiliberti
says
Try adding this in your functions.php file:
function tmce_new(){
echo '<script type="text/javascript">';
echo "edButtons[edButtons.length] = new edButton('ed_myshortcode'
,'shortcodetitle'
,'[myshortcode][/myshortcode]'
,''
);";
echo '</script>';
}
add_action('admin_head', 'tmce_new');
