dreamy1992 2019-08-06 09:08
浏览 202
已采纳

当我从wp rest api调用中获取内容时,短代码不起作用

I'm trying to get the content of a custom post type called event using wp rest api . everything works fine but I used Wp Backery page builder for creating contents in my event post type and the problem is I'm getting shortcodes without parsing and they are in plain text .

Can anybody help me with this, please?

I've tried some of answers in similar questions like using do_shortcode() function and trying to call apply_filters( 'the_content' , get_the_content()) but none of them work for me

here is my rest-api codes:

add_action( 'rest_api_init' , 'wt_rest_api');

function wt_rest_api(){
    register_rest_route('wtrest','events',array(
            'methods'   => WP_REST_SERVER::READABLE,
            'callback'  => 'wtEventResults'
        )); 
}

function wtEventResults($data){
    $events = new WP_Query([
        'post_type' => 'event',
        'post__in'  => array( (int)$data['id'] )
        ]);

    $eventsResults = [];

    while($events->have_posts()){
        $events->the_post();

        array_push($eventsResults , [
            'content'   => apply_filters( 'the_content' , get_the_content())
            ]);
    }

    return $eventsResults;

}

I'm getting the result but the shortcodes aren't parsing and their just plain text . Thanks in advance

  • 写回答

1条回答 默认 最新

  • donglu9898 2019-08-06 10:24
    关注

    thanks to @muka.gergely I've found the answer here.

    final code that worked for me is here:

    add_action( 'rest_api_init' , 'wt_rest_api');
    
    function wt_rest_api(){
        register_rest_route('wtrest','events',array(
                'methods'   => WP_REST_SERVER::READABLE,
                'callback'  => 'wtEventResults'
            )); 
    }
    
    
    function wtEventResults($data){
        WPBMap::addAllMappedShortcodes(); // This does all the work
    
        $events = new WP_Query([
            'post_type' => 'event',
            'post__in'  => array( (int)$data['id'] )
            ]);
    
        $eventsResults = [];
    
        while($events->have_posts()){
            $events->the_post();
    
    
            array_push($eventsResults , [
                    'content'   => apply_filters( 'the_content' ,  get_the_content() )
                ]);
        }
    
        return $eventsResults;
    
    }
    

    Hope it saves you some time

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 srs-sip外部服务 webrtc支持H265格式
  • ¥15 在使用abaqus软件中,继承到assembly里的surfaces怎么使用python批量调动
  • ¥15 大一C语言期末考试,求帮助🙏🙏
  • ¥15 ch340驱动未分配COM
  • ¥15 Converting circular structure to JSON
  • ¥30 Hyper-v虚拟机相关问题,求解答。
  • ¥15 TSM320F2808PZA芯片 Bootloader
  • ¥45 谷歌浏览器出现开发者工具无法显示已创建的,但您可以调试已部署的代码。 状态代码 404, net::ERR HTTP RESPONSE CODE FAILURE
  • ¥15 如何解决蓝牙通话音频突发失真问题
  • ¥15 安装opengauss数据库报错