Display more than 25 posts Resolved Requested: 3 years and 5 months ago Is it possible to display more than 25 posts per category? Some of my categories contain a large number of posts, and I would like to be able to display them all
OnPoint Plugins 3 years and 5 months ago Hi Miranda, You may display up to 100 posts by adding the following filter to your active theme’s functions.php: add_filter( 'advanced-sidebar-menu-pro/walker/display-posts/get-post-args', function( $args ) { $args['numberposts'] = 100; return $args; } ); Have a great weekend! Mat Lipe
Hi Miranda,
You may display up to 100 posts by adding the following filter to your active theme’s functions.php:
Have a great weekend!
Mat Lipe
Thank you so much!