在自定义模板页面中插入Wordpress联系表单7

时间:2017-04-11 11:54:56

标签: php html wordpress

我一直在尝试在自定义“空白”页面模板中插入WP联系表单7。

实际上我要做的是将WP CF7功能插入一个非常基本,干净的页面(只是一个很好的背景,能够调整字体,图像......)但我不希望页面看起来像WP主题的这篇博文...

我尝试使用FTP上传白页模板, 但是当我尝试使用空白模板在新页面中嵌入WPCF7代码时,没有任何反应......

任何可以帮助我的人?

非常感谢!

白页模板

   <?php /* Template Name: Blank Page
*
* A blank custom page template.
*
* The "Template Name:" bit above allows this to be selectable
* from a dropdown menu on the edit page screen.
*
*/
?>


<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>

1 个答案:

答案 0 :(得分:0)

编写代码如下:

<?php
/* Template Name: Blank Page
*
* A blank custom page template.
*
* The "Template Name:" bit above allows this to be selectable
* from a dropdown menu on the edit page screen.
*
*/

get_header();

$id= get_the_ID(); 
$post = get_post($id); 
$content = apply_filters('the_content', $post->post_content); 
echo $content; 

get_footer();