我正在创建一个插件,其中我使用一个类来检索plugin-folder > includes > PostData.php
中的帖子数据,我有一个自定义帖子类型的页面plugin-folder > single-look.php
现在我想在单个文件中使用该类我正在下面这样做。
get_header();
$id = get_the_ID();
$postdata = new PostData($id);
但我得到了Fatal Error : : Class 'PostData' not found in .....on line 7
。我需要知道如何在这两个之间进行链接?显然,该类是在插件init中实例化的,并且该函数与其他一些过滤器一起工作正常。
答案 0 :(得分:0)
只需使用get_post
,它就会检索代码下面的帖子数据检查。
get_header();
$id = get_the_ID();
$postdata = get_post($id);