我想问一下,在管理区域内是否有执行php的钩子,我的问题是,我正在尝试使用thickbox jQuery插件在弹出框架内使用锚定来执行get\\u posts wordpress函数,并且我将该锚定链接到包含我的代码的页面
我在函数中做主要函数。php文件
function fetch_all_companies() {
$companies_args = array(
\'numberposts\' => -1,
\'orderby\' => \'post_date\',
\'order\' => \'DESC\',
\'post_type\' => \'company\',
\'post_status\' => \'publish\'
);
$companies = get_posts($companies_args);
return $companies;}
在管理面板内执行此函数时,我遇到了此错误
Fatal error: Call to undefined function fetch_all_companies()
有什么想法吗???