联系表格7数据库短码

时间:2012-02-03 作者:Anders Kitson

我使用的是联系方式7。我已经成功地添加到我的页面,现在我想用简短的代码将数据库导出到一个单独的页面上。我有以下代码,但它会导致以下错误。

\\Code

<?php
echo do_shortcode(\'[cfdb-html form="Contact form 1" show="Submitted,your-name"]${your-name}${your-email}${your-message}[/cfdb-html]\');
?>

\\Error

Fatal error: Call to undefined function is_plugin_active() in /Users/anderskitson/Sites/fiftyfity/wp-content/plugins/contact-form-7-to-database-extension/CF7DBPlugin.php on line 654

2 个回复
SO网友:Milo

的Codex页is_plugin_active 解释您的问题:

注:在wp admin/INCLUDE/plugin中定义。php,so this is only available from within the admin pages. 如果您想在模板中使用此功能,则需要手动要求插件。php,如下所示:

<?php include_once( ABSPATH . \'wp-admin/includes/plugin.php\' ); ?>
<?php is_plugin_active($plugin) ?>

SO网友:andresmijares

嗯,但据我所知,显示短代码的正确方法是

 [cfdb-html form="Contact form 1" show="Submitted,your-name,your-email,your-message"][/cfdb-html]

结束

相关推荐

Shortcode Variations?

下面的函数在使用时创建一个按钮,如so[btn]按钮文本[/btn]function btn($atts, $content = null) { extract(shortcode_atts(array(\'link\' => \'#\'), $atts)); return \'<a class=\"btn\" href=\"\'.$link.\'\"><span>\' . do_shortcode($content) . \'</span&

联系表格7数据库短码 - 小码农CODE - 行之有效找到问题解决它

联系表格7数据库短码

时间:2012-02-03 作者:Anders Kitson

我使用的是联系方式7。我已经成功地添加到我的页面,现在我想用简短的代码将数据库导出到一个单独的页面上。我有以下代码,但它会导致以下错误。

\\Code

<?php
echo do_shortcode(\'[cfdb-html form="Contact form 1" show="Submitted,your-name"]${your-name}${your-email}${your-message}[/cfdb-html]\');
?>

\\Error

Fatal error: Call to undefined function is_plugin_active() in /Users/anderskitson/Sites/fiftyfity/wp-content/plugins/contact-form-7-to-database-extension/CF7DBPlugin.php on line 654

2 个回复
SO网友:Milo

的Codex页is_plugin_active 解释您的问题:

注:在wp admin/INCLUDE/plugin中定义。php,so this is only available from within the admin pages. 如果您想在模板中使用此功能,则需要手动要求插件。php,如下所示:

<?php include_once( ABSPATH . \'wp-admin/includes/plugin.php\' ); ?>
<?php is_plugin_active($plugin) ?>

SO网友:andresmijares

嗯,但据我所知,显示短代码的正确方法是

 [cfdb-html form="Contact form 1" show="Submitted,your-name,your-email,your-message"][/cfdb-html]

相关推荐

Geoip shortcodes in comments

我想知道如何从geoip插件添加国家/地区短代码(https://pl.wordpress.org/plugins/geoip-detect/) 输入注释字段。[geoip\\u detect2 property=“country”]据我所知,注释字段必须是所见即所得字段(默认情况下不是文本)。还有其他方法吗?通过自定义php函数或其他方式?你好,Michal