mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
8 lines
302 B
Text
8 lines
302 B
Text
add_filter( 'relevanssi_hits_filter', function( $hits ) {
|
|
$pinned_post_id = 1234;
|
|
if ( ! in_array( $pinned_post_id, array_column( $hits[0], 'ID' ), false ) ) {
|
|
$pinned_post = get_post( $pinned_post_id );
|
|
array_unshift( $hits[0], $pinned_post );
|
|
}
|
|
return $hits;
|
|
}, 11 );
|