Вставьте Контейнер Div Под Первым Результатом Поиска.

  • Автор темы Tomyannolah87
  • Обновлено
  • 25, Oct 2024
  • #2

Вы должны быть в состоянии сделать это с помощью:

wpse_before_second_post_in_search

где мы ввели обычай

/**

* Setup a custom hook before the second post on the search page

*/
add_action( 'the_post', function( $post, \WP_Query $q )
{

if( $q->is_search() && $q->is_main_query() && 2 === $q->current_post )

{

do_action( 'wpse_before_second_post_in_search' );

}
}, 10, 2 ); 

/**

* Inject a Div after the first post on the search page

*/
add_action( 'wpse_before_second_post_in_search', function()
{

echo '<div>My Injected Div</div>';
} );
hook, that you can now play with as you need.

 

Mary_Honey


Рег
15 Sep, 2004

Тем
75

Постов
196

Баллов
601
Тем
403,760
Комментарии
400,028
Опыт
2,418,908

Интересно