我使用Primal wordpress主题用于简单的博客网站。
我想在主页上做一个小改动。我想删除"日期,用户和评论"行显示在每个帖子的标题下方。我无法从仪表板中删除它。请提出解决方案。如果需要插件修改,请建议步骤。 I want to remove text highlighted in yellow
答案 0 :(得分:0)
转到你的\ wp-content \ themes \ primal \ template-parts \ content-single.php
然后找到代码并对其进行评论
<!--div class="entry-meta">
<span class="date-structure">
<span class="dd"><i class="fa fa-calendar"></i><?php the_time(get_option('date_format')); ?></span>
</span>
<?php primal_author(); ?>
<?php primal_comments_meta(); ?>
<?php primal_edit() ?>
</div--><!-- .entry-meta -->
然后保存文件
它适用于你。
由于