在WordPress内部,我有两个插件。
第一个插件名为Pods,它具有pods()
函数。
第二个插件(我创建的)是Pods的一个简单插件,它利用Pods()
函数,如下所示:
<?php
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
//Get the pod for the current post where this shortcode will be appearing
$pod = pods( get_post_type(), get_the_ID() );
//Build the name shortcode
add_shortcode( 'my_name', 'bg_my_name_shortcode' );
function bg_my_name_shortcode($pod) {
$my_name = $pod->display('my_name');
return $my_name;
}
但是由于某种原因,这会导致错误Uncaught Error: Call to undefined function pods()
,即使pods()
是在其他Pods插件中定义的,并且其设计也是这样扩展的:https://pods.io/docs/code/pods/
如果我将$pod = pods( get_post_type(), get_the_ID() );
移到bg_my_name_shortcode
函数中,则可以正常工作,但是我要编写许多这样的短代码,所以我不想调用这三个函数(pods()
, get_post_type()
,get_the_ID()
)一遍又一遍,而不是一次调用并将其存储为变量。
我也很困惑为什么会发生这种情况,因为pods()
绝对是Pods插件中定义的函数。
答案 0 :(得分:2)
出现该错误的原因是,尚未加载定义该功能的插件。
您需要在初始化WordPress并加载所有插件之后声明短代码。 尝试以下代码:
<?php
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
function bg_my_name_shortcode_init(){
//Get the pod for the current post where this shortcode will be appearing
$pod = pods( get_post_type(), get_the_ID() );
//Build the name shortcode
add_shortcode( 'my_name', 'bg_my_name_shortcode' );
function bg_my_name_shortcode($pod) {
$my_name = $pod->display('my_name');
return $my_name;
}
}
add_action('init', 'bg_my_name_shortcode_init');
更多详细信息,请here
修复Uncaught Error: Call to a member function display() on string
错误:
<?php
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
function bg_my_name_shortcode_init(){
function bg_my_name_shortcode() {
//Get the pod for the current post where this shortcode will be appearing
$pod = pods( get_post_type(), get_the_ID() );
$my_name = $pod->display('my_name');
return $my_name;
}
//Build the name shortcode
add_shortcode( 'my_name', 'bg_my_name_shortcode' );
}
add_action('init', 'bg_my_name_shortcode_init');