Add custom div to blog page
// add custom div to blog page function my_content($content) { global $post; return '<div class="blog-wrap">'.$posts.'</div>'; } add_filter('the_content', 'my_content');