Поддержка Темы и шаблоны разное содержание от меток

  • есть записи которые выводятся на странице, у записей есть метки

    СБОР
    СБОР ЗАКОНЧЕН

    как можно дополнять содержание поста в зависимости от той или иной метки?

    такая логика:

    if («метка поста» = «СБОР»)
    { добавить в это место, где стоит логика, HTML код ‘код…..’ }

    место где должен располагаться код

    <?php
    /**
     * Template part for displaying posts.
     *
     * @link https://codex.wordpress.org/Template_Hierarchy
     *
     * @package The_Minimal
     */
     
    ?>
     
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
        <header class="entry-header">
            <?php
                if ( is_single() ) {
                    the_title( '<h1 class="entry-title" itemprop="headline">', '</h1>' );
                } else {
                    the_title( '<h2 class="entry-title" itemprop="headline"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
                }
     
            if ( 'post' === get_post_type() ) : ?>
            <div class="meta-info">
                <?php the_minimal_posted_on(); ?>
            </div><!-- .meta-info -->
            <?php
            endif; ?>
        </header><!-- .entry-header -->
        
        <?php 
        if( has_post_thumbnail() ){ 
            if( is_single() ){ ?>
                <div class="post-thumbnail">
                    <?php is_active_sidebar( 'right-sidebar' ) ? the_post_thumbnail( 'the-minimal-image', array( 'itemprop' => 'image' ) ) : the_post_thumbnail( 'the-minimal-image-full', array( 'itemprop' => 'image' ) ) ; ?>
                </div>
            <?php }else{ ?>
                <a href="<?php the_permalink(); ?>" class="post-thumbnail">
                    <?php is_active_sidebar( 'right-sidebar' ) ? the_post_thumbnail( 'the-minimal-image', array( 'itemprop' => 'image' ) ) : the_post_thumbnail( 'the-minimal-image-full', array( 'itemprop' => 'image' ) ) ;?>
                </a>
            <?php } 
        } ?>
        
     
        
        
            <a>НУЖНОЕ МЕСТО ДЛЯ IF</a>
     
     
        
        
        <div class="entry-content" itemprop="text">
            <?php
                if( is_single() ){
                    the_content( sprintf(
                        /* translators: %s: Name of current post. */
                        wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'the-minimal' ), array( 'span' => array( 'class' => array() ) ) ),
                        the_title( '<span class="screen-reader-text">"', '"</span>', false )
                    ) );
                }else{
                    $format = get_post_format();
                    if( false === $format ){
                        the_excerpt();                    
                    }else{
                        the_content();
                    }                
                }
                wp_link_pages( array(
                    'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'the-minimal' ),
                    'after'  => '</div>',
                ) );
            ?>
        </div><!-- .entry-content -->
        
        <?php if( ! is_single() ){ ?>
            <a href="<?php the_permalink(); ?>" class="continue-reading"><?php esc_html_e( 'Continue Reading', 'the-minimal' ); ?></a>
        <?php } ?>
        
        <footer class="entry-footer">
            <?php the_minimal_entry_footer(); ?>
        </footer><!-- .entry-footer -->
    </article><!-- #post-## -->

    сами метки:

    <div class="more-detail">
        <span class="file">ЗАПОЛНЕНО ПОД: <a href="http://123.ru" rel="category tag">Требуется помощь</a></span>
        <span class="tag">ПОМЕЧЕНО С: <a href="http://123.ru" rel="tag">СБОР</a></span>
        <span class="edit-link"><a class="post-edit-link" href="http://123.ru/wp-admin/post.php?post=1&action=edit">Редактировать <span class="screen-reader-text">"Аня Смирнова"</span></a></span>
    </div>
    • Тема изменена 2 года, 11 месяцев назад пользователем saperex.
Просмотр 2 ответов — с 1 по 2 (всего 2)
Просмотр 2 ответов — с 1 по 2 (всего 2)
  • Тема «разное содержание от меток» закрыта для новых ответов.