我想改变我的WordPress网站的特定帖子类型的背景图像

时间:2020-12-15 作者:Coolpinkzz

假设我的post slug是/happypost

这是第页的代码。主题编辑器中的php

<body <?php body_class(); ?>>
<?php do_action(\'flatsome_before_page\' ); ?>
<?php do_action(\'flatsome_after_header\'); ?>
<div id="wrapper">
    
    
    <div id="main" class="<?php flatsome_main_classes();  ?>">
            
    
    <?php while ( have_posts() ) : the_post(); ?>
        <?php the_content(); ?>
    <?php endwhile; // end of the loop. ?>
        
    

    </div><!-- #main -->
    <footer id="footer" class="footer-wrapper">

    <?php do_action(\'flatsome_footer\'); ?>

</footer><!-- .footer-wrapper -->
</div><!-- #wrapper -->
<?php do_action( \'flatsome_after_page\' ); ?>

<?php wp_footer(); ?>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.js"></script>
<script src="<?php echo get_stylesheet_directory_uri(); ?>/assets/js/main.js"></script>
</body>

1 个回复
SO网友:Gabriel Borges

WordPress有一个非常完整的模板层次结构。有关更详细的说明,请访问本文:https://developer.wordpress.org/themes/basics/template-hierarchy/

基本上,要定义此帖子类型的布局,可以在主题目录中创建一个名为:single-{post type}的文件。php

在您的示例中:single happypost。php

干杯

相关推荐