2017-04-11 187 views
0

我一直試圖在自定義的「空白」頁面模板中插入WP聯繫表格7插入WordPress的聯繫表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; ?> 
+0

U可以'回聲do_shortcode()'模板 –

+0

爲什麼使用'回聲do_shortcode()'的模板? –

+0

@DhruvinMoradiya閱讀上面 –

回答

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(); 
+0

爲什麼OP應該寫這樣的代碼? –