Вход на сайт

Просмотр новости

Найдите то, что Вас интересует

Showing related posts from the same category

Дата публикации: 23-08-2026 02:51:24

If you want the Related Posts to only include posts from the same category as the current post, you can’t adjust that from the Relevanssi Related Posts settings. It’s a simple thing to do with a little code snippet, though. Add this function to your site: add_filter( 'relevanssi_related_args', function( $args ) { global $post; $cats...
Source

Основное содержимое страницы с новостью.

If you want the Related Posts to only include posts from the same category as the current post, you can’t adjust that from the Relevanssi Related Posts settings. It’s a simple thing to do with a little code snippet, though.

Add this function to your site:

add_filter( 'relevanssi_related_args', function( $args ) {
    global $post;
    $cats = wp_get_object_terms( $post->ID, 'category', array('fields' => 'ids') );
    $args['tax_query'] = array(
        array(
            'taxonomy' => 'category',
            'field'    => 'id',
            'terms'    => $cats,
        ),
    );
    return $args;
} );

This will make sure the Related Posts share at least one same category as the current post. If you want to use a different taxonomy, just replace the two occurrances of category with the slug of your custom taxonomy.

Your account

Not logged in. Log in to see your license details.

SearchPopular Resources
Related Posts:
Comment Section:

Схожие новости

#Наименование новостиТональностьИнформативностьДата публикации
1Relevanssi updates through a proxy09.1213-08-2026
2Категории в Страницах06.3615-08-2026
3Связь с космосом :))) 5216-07-2026
4Сортировка категорий в catmenu по ID в нужном порядке04.2705-07-2026
5Sidebar still not displaying on Posts Page (follow-up to topic 110016)0610-07-2026
6Раскрыты отношения между бойцами ВСУ и наемниками0506-07-2026
7Relationships Are Better With The Internet06.1722-07-2026
8Going Against Girl Code: Would you date your friend’s ex?07.3505-08-2026
9Мужчины раскрыли настоящее отношение к женскому флирту01009-08-2026
10Помогают настроить связь с космосом 💫 0027-06-2026

Классификация: . Схожих патентов: 0. Схожих новостей: 10. Тональность: 0. Информативность: 8.2. Источник: www.relevanssi.com.