我的WordPress博客有2个问题

时间:2015-04-08 22:46:01

标签: css wordpress post

http://www.florence.inspiremeland.gridhosted.co.uk/

  1. 我尝试了每一种可能的方式从我的单个帖子中删除我的功能图像,同时在访问我的主页时保留图像。

  2. 首先,我尝试使用以下代码:

    .single-post .attachment-post-thumbnail {
      display: none;
    }
    

    与我的style.css或单个帖子文件中的许多其他文件一起没有任何成功。

    这是在我的single.php文件中:

    <?php get_header(); ?>
    
        <div class="container">
    
            <div id="content">
    
                <div id="main" <?php if(get_theme_mod('sp_post_layout') == 'full') : ?>class="fullwidth"<?php endif; ?>>
    
                    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
                        <?php get_template_part('content'); ?>
    
                    <?php endwhile; ?>
    
                    <?php endif; ?>
    <?php if(get_theme_mod('sp_post_layout') == 'full') : else : ?><?php get_sidebar(); ?><?php endif; ?>           
                </div>
    
    
    <?php get_footer(); ?>
    

    如果您可以提供帮助,请告诉我您的CSS需要哪些部分? 我真的很想解决这个问题:(

    2

    当我访问我的博客文章时,侧边栏位于内容之下,而不在旁边,我的网站尚未生效,所以我无法向您展示,但如果您能提供帮助,我将非常感激。

    贝蒂

1 个答案:

答案 0 :(得分:1)

查看包含/后格式/中的standard.php,您应该找到可以删除的<?php the_post_thumbnail('thumbnail'); }?>内容。