danny-d
6/26/2016 - 5:28 PM

Add custom div to blog page

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');