隐藏帖子[Tesseract]

时间:2017-01-19 22:17:22

标签: wordpress hide thumbnails

我想隐藏所有帖子中的精选图片。我试过隐藏feautered image 插件。还有类似帖子的一些公式,如:

.blog .entry-thumbnail { display: none; }

但它没有用。

我的内容单个文件如下:

<?php
/**

 * @package Tesseract

 */
?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

<?php $featImg_pos = get_theme_mod('tesseract_blog_featimg_pos'); 
    if ( has_post_thumbnail() && ( !$featImg_pos || ( $featImg_pos == 'above' ) ) ) 
        tesseract_output_featimg_blog(); ?>
    <?php //if ( my_theme_show_page_header() ) : ?>

        <header class="entry-header">

            <?php the_title( '<div id="blogpost_title"><h1 class="entry-title">', '</h1></div>' ); ?>

            <?php

            $postDate = get_theme_mod('tesseract_blog_date');

            if ( $postDate == 'showdate' ) { ?>

                <span><i class="fa fa-calendar" aria-hidden="true"></i><?php the_time('F j, Y'); ?></span>

            <?php } ?>

            <?php

            $postAuthor = get_theme_mod('tesseract_blog_author');

            if ( $postAuthor == 'showauthor' ) { ?>

                <span><i class="fa fa-user" aria-hidden="true"></i><?php the_author(); ?></span>

            <?php } ?>

            <?php

            $mypostComment = get_theme_mod('tesseract_blog_comments');

            if ( ( $mypostComment == 'showcomment' ) && ( comments_open() ) ) { ?>

                <span><i class="fa fa-comments-o" aria-hidden="true"></i><?php //comments_number('(No Comments)', '(1 Comment)', '(% Comments)' );?><?php comments_popup_link(
    'No comments exist',  '1 comment', '% comments'); ?></span>

            <?php }

            ?>

        </header><!-- .entry-header -->

    <?php //endif; ?>

    <?php if ( has_post_thumbnail() && ( $featImg_pos == 'below' ) ) 

        tesseract_output_featimg_blog(); ?>

    <div class="entry-content">

        <div class="entry-meta">

            <?php tesseract_posted_on(); ?>

        </div><!-- .entry-meta -->

        <?php if ( has_post_thumbnail() && ( $featImg_pos == 'left' ) ) { ?>

        <div class="myleft">

        <?php tesseract_output_featimg_blog(); ?>

        <?php the_content(); ?>

        <?php the_tags()?>

        </div>

        <?php } elseif ( has_post_thumbnail() && ( $featImg_pos == 'right' ) ){ ?>

        <div class="myright">

        <?php  tesseract_output_featimg_blog(); ?> 

        <?php the_content(); ?>

        <?php the_tags()?>

        </div>

        <?php } else { ?>

        <?php the_content(); ?>

        <?php } ?>

        <?php    
            wp_link_pages( array(

                'before' => '<div class="page-links">' . __( 'Pages:', 'tesseract' ),

                'after'  => '</div>',

            ) );

        ?>

    </div><!-- .entry-content -->
</article><!-- #post-## -->

这很复杂,你们知道如何解决这个问题吗?

2 个答案:

答案 0 :(得分:0)

尝试评论说出tesseract_output_featimg_blog();的行,所以:

<?php  tesseract_output_featimg_blog(); ?> 

成为这个:

<?php /* tesseract_output_featimg_blog(); */ ?> 

我看到4次出现,看起来他们与主题中不同的特色图片位置有关。

作为旁注,除非您在子主题中执行此操作,否则不建议更改主题文件。

答案 1 :(得分:0)

有些主题可让用户选择是否真的想要使用精选图片作为帖子。如果你刚开始使用你的博客/网站,我宁愿建议搜索一个这样的wordpress主题。

另外,与@Jonathan达成协议,我也建议不要使用你的主题文件。几天前我尝试更改主题文件,出于同样的原因,最终破坏了我的主题代码。结果,我无法登录我的博客。所以,最好小心点。