我正在构建一个wordpress主题/模板,我需要在内容中添加pre和post div。
它看起来像这样:
<div class="my-pre-content-div">This is added before the content</div>
<div id="content">
All Content Here
</div>
<div class="my-post-content-div">This is added after the content</div>
我需要在全球范围内执行此操作,以便我需要修改哪些页面?
由于
答案 0 :(得分:3)
在这个文件夹中有一堆php文件,其中大部分都是模板文件:
wp-content/themes/[your theme name]/
答案 1 :(得分:0)
这取决于您的主题设计,但作为此问题的基本答案,您可以使用wp函数page.php和single.php来全局格式化主题的所有帖子和页面。您可以使用以下代码作为示例:
<?php get_header(); ?>
<div class="my-pre-content-div">This is added before the content</div>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
.
.
.
.
<?php endwhile; else: ?>
</div>
<div class="my-post-content-div">This is added after the content</div>