嗨,我在WP环境中有这个ajax代码,它从post_content字段中提取并显示内容。 变量$ raw_content,我想"添加"其他领域,所以他们在前端回声(如自定义字段和post_title),我该怎么做?
case 'load_more_content':
$postid = $base->getPostVar('postid', 0, 'i');
if($postid > 0){
$raw_content = get_post_field('post_content', $postid);
if(!is_wp_error($raw_content)){
//filter apply for qTranslate and other
$content = apply_filters('the_content', $raw_content);
self::ajaxResponseData($content);
}
}
$error = __('Post Not Found', EG_TEXTDOMAIN);
break;
我已经花了好几个小时才取得成功而没有成功。
尝试的另一种方法是创建一个aditional case&load_more_content':实例,但这也没有用。我需要在前端显示这些字段,但看起来很难。谢谢你的帮助。