• Resolved domobisnes

    (@domobisnes)


    Хотел добавить перед статьей метки, но так не работает
    %%post_tags%%
    %%post_content%%

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Flector

    (@flector)

    а зачем?
    метки ведут на страницы терминов таксономии, которых в турбо нет (плагин их не поддерживает пока).

    Thread Starter domobisnes

    (@domobisnes)

    Вот в турбо статье в конце поста метки-ссылки, которые ведут на сам сайт. Я хотел, чтобы такие же метки были в начале поста
    https://yadi.sk/i/LYQUpbXYpc8DAw

    Plugin Author Flector

    (@flector)

    ну можно фильтром в functions.php темы:

    
    function yturbo_show_tags( $content ) {
        ob_start(); ?>
        <p><?php the_tags('Теги: ', ' - '); ?></p><?php 
        $tags = ob_get_contents();
        ob_end_clean();
        $content = $tags .$content;
        return $content;
    }
    add_filter( 'yturbo_the_content', 'yturbo_show_tags' );
    
    Thread Starter domobisnes

    (@domobisnes)

    это будет выводить метки в турбо версии?

    Plugin Author Flector

    (@flector)

    да.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Отображение в статье меток’ is closed to new replies.