Comments free20art started the conversationApril 11, 2019 at 8:34amHello,I need to have the Category Archive pages and Mega Menus show random ordered posts each time someone goes to a page instead of the newest post first. How can I do this?Thank you! 501Penci repliedApril 11, 2019 at 4:12pmHi, Please send me your website managment information ( admin url site, username and password ) . I will change it help you. Best Regards, PenciDesign free20art replied privately 501Penci repliedApril 16, 2019 at 2:21amHi,1/ I add custom code php to pennews/function.php file to Random posts for Archive pages and Mega Menu: http://prntscr.com/nchdes function penci_wpsites_query( $query ) { if ( $query->is_category() && $query->is_main_query() ) { $query->set( 'orderby', 'rand' ); }}add_action( 'pre_get_posts', 'penci_wpsites_query' );2/ Random posts for Mega Menu. I add custom code penci-framwork plugin / mega-menu/menu-render.php line 160 http://prntscr.com/nchdmf $attr = array( 'post_type' => $post_type, 'posts_per_page' => $numbers, 'ignore_sticky_posts' => 1, 'orderby' => 'rand', 'post_status' => 'publish', 'tax_query' => array( array( 'taxonomy' => $tax, 'field' => 'id', 'terms' => $cat_id, ), ), ); Note important: please backup the code before update PenNews theme with latest version.Please check it again,Best Regards,PenciDesign free20art replied privately Sign in to reply ...
Hello,
I need to have the Category Archive pages and Mega Menus show random ordered posts each time someone goes to a page instead of the newest post first. How can I do this?
Thank you!
Hi,
Please send me your website managment information ( admin url site, username and password ) . I will change it help you.
Best Regards,
PenciDesign
Hi,
1/ I add custom code php to pennews/function.php file to Random posts for Archive pages and Mega Menu: http://prntscr.com/nchdes
2/ Random posts for Mega Menu. I add custom code penci-framwork plugin / mega-menu/menu-render.php line 160 http://prntscr.com/nchdmf
Note important: please backup the code before update PenNews theme with latest version.
Please check it again,
Best Regards,
PenciDesign