79356093

Date: 2025-01-14 19:02:06
Score: 1
Natty:
Report link
function custom_homepage_product_query( $query ) {
if ( ! is_admin() && $query->is_main_query() && is_front_page() ) {
$query->set( 'orderby', 'date' );
$query->set( 'order', 'DESC' );
}
}
add_action( 'pre_get_posts', 'custom_homepage_product_query' );

I tried adding the following code to the end of functions.php, but it doesn't work.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: P Compact