28

联系我们表单有一个插件。

要激活表单,您所要做的就是[CONTACT-US-FORM]在页面中放置...

我的页面正在调用页面模板。是否可以在 PHP 模板中添加 [CONTACT-US-FORM] 短代码?

我试过了,但没有用。

WordPress 页面有效,但不是我想要的方法。

[CONTACT-US-FORM]

PHP 联系我们模板我想尝试这样的方法,但没有成功。

<?php
/*
Template Name: [contact us]

*/
get_header(); ?>
[CONTACT-US-FORM]
<?php get_footer(); ?>
4

3 回答 3

84
echo do_shortcode('[CONTACT-US-FORM]');

在您的模板中使用它。

在这里寻找更多:做简码

于 2013-10-10T10:41:53.910 回答
4

试试这个:

<?php 
/*
Template Name: [contact us]

*/
get_header();
echo do_shortcode('[CONTACT-US-FORM]'); 
?>
于 2013-10-10T10:42:46.457 回答
3

确保在文本小部件中启用简码。

// To enable the use, add this in your *functions.php* file:
add_filter( 'widget_text', 'do_shortcode' );

// and then you can use it in any PHP file:  
<?php echo do_shortcode('[YOUR-SHORTCODE-NAME/TAG]'); ?>

检查文档以获取更多信息。

于 2018-07-04T12:22:03.693 回答