Live site.
我有一个自定义主题,它给了我一些关于短代码的小问题——它们不起作用。当我切换回默认主题时,短代码工作得很好。我需要在自定义主题中寻找什么才能成为罪魁祸首?
如果有必要的话,短代码用于联系表单7和预订插件。
联系php
<?php
/*
Template Name: Contact
*/
?>
<?php get_header(); ?>
<h2>Tell us, what\'s on your mind? Questions, comments, hellos- share them below.</h2>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php endwhile; else: ?>
<p><?php _e(\'Sorry, no posts matched your criteria.\'); ?></p>
<?php endif; ?>
<?php get_footer(); ?>
非常感谢您的任何帮助。