【发布时间】:2014-01-01 07:39:07
【问题描述】:
我正在为朋友构建一个主题,但由于某些原因,我无法在 Pages 中使用简码。他们只在帖子中工作。
我的page.php文件现在很简单:
<?php get_header(); ?>
<?php
if (have_posts()) :
while (have_posts()) : the_post();
echo '<div class="hero-unit"><div class="container"><h1>'.get_the_title().'</h1></div></div>';
echo '<div class="container clearfix" id="main-content">'.get_the_content().'</div>';
endwhile;
endif;
?>
<?php get_footer(); ?>
这工作正常,但只是将短代码显示为文本。 IE 我正在尝试使用简码 [wp_sitemap_page] 该页面仅在文本中呈现“[wp_sitemap_page]”。
可能是什么问题?
【问题讨论】:
标签: php wordpress wordpress-theming