Update to functions.php


Post Views for May :
andy
I am the creator of CommentLuv Premium
andy
andy
You can get your own content published on this site as long as you have CommentLuv installed on your site.

Doing so means you get exposure to thousands and thousands of other CommentLuv users and your posts get sent out to the massive subscriber list.

Google loves this site and indexes it multiple times per day and posts always get lots of comments so you can be sure of some excellent exposure.

See the Write For Us page for more details

btw.. you can get this author box here

WPMU was stripping out any html I put into a post so the subscribe form for updates wasn’t showing up. Even using a shortcode wouldn’t work until I removed the filter responsible.

Edited functions.php to add shortcode

add_shortcode('shortcodename','functionnameinfunctions.php');

function shortcodename($atts,$content=null){

/> remove_filter(‘the_content’,’wp_filter_post_kses’);
$return = ‘

‘;

return $return;
}

Prevents all shortcodes from being executed in the theme, just the ones I want.