我希望我的要素图片停止显示在帖子上,我只想在最近的帖子中将其用作缩略图。
在问这里之前我尝试了很多不同的解决方案。 我在single.php中寻找负责任的代码,但它不存在, 我尝试用CSS隐藏我的特征图像,当我用firebug检查我的网站时,我注意到我的CSS被原始CSS覆盖,这通常不会发生。完成我的代码后,我在template-tags.php
中找到了这个// Display Custom Header
if ( ! function_exists( 'dynamicnews_display_custom_header' ) ):
function dynamicnews_display_custom_header() {
// Check if page is displayed and featured header image is used
if( is_page() && has_post_thumbnail() ) :
?>
<div id="custom-header" class="featured-image-header">
<?php the_post_thumbnail('custom_header_image'); ?>
</div>
<?php
// Check if there is a custom header image
elseif( get_header_image() ) :
?>
<div id="custom-header">
<img src="<?php echo get_header_image(); ?>" />
</div>
<?php
endif;
}
endif;
// Display Postmeta Data
if ( ! function_exists( 'dynamicnews_display_postmeta' ) ):
function dynamicnews_display_postmeta() {
// Get Theme Options from Database
$theme_options = dynamicnews_theme_options();
// Display Date unless user has deactivated it via settings
if ( isset($theme_options['meta_date']) and $theme_options['meta_date'] == true ) : ?>
<span class="meta-date sep">
<?php printf(__('<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date published updated" datetime="%3$s">%4$s</time></a>', 'dynamicnewslite'),
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() )
);
?>
</span>
<?php endif;
我试图在这里删除部分代码,因为我对PHP一无所知,我收到很多错误,我希望你们可以帮助我。 我正在使用主题动态新闻精简版。 这是指向我的网站http://www.coolstuffgift.com/awesome-birthday-gifts-for-awesome-people/
的链接Single.php的原始代码
<?php get_header(); ?>
<div id="wrap" class="container clearfix">
<section id="content" class="primary" role="main">
<?php if (have_posts()) : while (have_posts()) : the_post();
get_template_part( 'content', 'single' );
endwhile;
endif; ?>
<?php comments_template(); ?>
</section>
<?php get_sidebar(); ?>
</div>
这是我在single.php中得到的全部内容 我认为开发人员做了一些隐藏代码的技巧。
答案 0 :(得分:0)
在content.php
或content-single.php
文件中。
只需评论the_post_thumbnail()
此类功能。