gpt4 book ai didi

php - 从 Wordpress 帖子中删除特色图片。 (新闻动态精简版)

转载 作者:行者123 更新时间:2023-11-28 07:17:01 26 4
gpt4 key购买 nike

我希望我的置顶图片不再出现在帖子中,我只是想将它用作最近帖子的缩略图。

在这里提问之前,我尝试了很多不同的解决方案。我在 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 中得到的全部我认为开发人员采取了一些技巧来隐藏代码。

最佳答案

在您的 content.phpcontent-single.php 文件中。

只需注释掉the_post_thumbnail()这类函数即可。

关于php - 从 Wordpress 帖子中删除特色图片。 (新闻动态精简版),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32293992/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com