Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dannydickson
Last active January 13, 2017 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dannydickson/5ce6cf471a4ba96b18aba6a423efefec to your computer and use it in GitHub Desktop.
Save dannydickson/5ce6cf471a4ba96b18aba6a423efefec to your computer and use it in GitHub Desktop.
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');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment