Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save braddalton/6239958 to your computer and use it in GitHub Desktop.
Save braddalton/6239958 to your computer and use it in GitHub Desktop.
/** Limit blog template to any number of posts */
add_filter( 'genesis_pre_get_option_blog_cat_num', 'custom_blog_posts_limit' );
function custom_blog_posts_limit( $option ){
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment