我有一个自定义的帖子类型,需要以某种方式显示它。我希望其他帖子正常显示。当我尝试使用以下代码来完成此操作时,我得到一个500内部服务器错误。
global $post;
//do this only for custom type
if (!(get_post_type()==\'customt\'))
{
$rawContent = $post->post_content;
$formattedContent = apply_filters(\'the_content\',$rawContent);
echo $formattedContent;
return;
}
我在google上搜索了一下,找到了很多与之相关的东西。htaccess,但我认为这里不是这样。如果我注释掉apply filters行(
$formattedContent =...
) 和回显原始内容,帖子显示,但当然没有格式。
当我尝试应用过滤器时,我做错了什么?