posts_search_orderby

posts_search_orderby

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('posts_search_orderby') is found 1 times:

  • /wp-includes/class-wp-query.php line 2501
    2497
    2498
    2499
    2500
    2501
    2502
    2503
    2504
    2505
    2506
    2507
             *
             * @param string   $search_orderby The ORDER BY clause.
             * @param WP_Query $query          The current WP_Query instance.
             */
            $search_orderby = apply_filters( 'posts_search_orderby', $search_orderby, $this );
        }
     
        if ( $search_orderby ) {
            $orderby = $orderby ? $search_orderby . ', ' . $orderby : $search_orderby;
        }
    }