如何在wordpress中将插件函数挂钩到自定义函数中

时间:2014-12-26 09:59:39

标签: php wordpress

在wordpress中,我试图将Advance Custom Field Plugin的功能用于我自己的功能。 我添加了

add_action( 'post_link_resource_lessonplans_shortcode', 'the_field' );

在我的功能之前进入我的功能。我用了

do_action('the_field');

但是没有结果我可以在浏览器上找到任何帮助吗?提前谢谢。

1 个答案:

答案 0 :(得分:0)

直接在自定义函数中使用the_field($ field_name)。 或

if(function_exists('the_field')){
    the_field($field_name);
}

无论如何,the_field函数至少需要一个参数。