0

使用 LearnDash 开发的 Wordpress 电子学习网站。需要在 wordpress 之外使用帖子内容,但内容有简码。

如何使用 PHP 和 wordpress 函数将简码转换为 HTML 代码。以下是示例内容:

[vc_row padding_top="0px" padding_bottom="0px" bg_video="" class="" style=""][vc_column fade_animation_offset="45px" width="1/1"][image src="942" alt="" href="" title="" info_content="" lightbox_caption="" id="" class="" style=""][gap size="1.313em" id="" class="" style=""]

当我访问网页时,它会转换为 HTML。但我希望仅将上述内容的 HTML 内容显示在移动应用程序中。我不想下载完整的 HTML 页面。

4

2 回答 2

0

查看do_shortcode().

只要您包含 Wordpress 核心,您就可以像这样运行它:

echo do_shortcode('[some_shortcode]');
于 2019-01-10T22:25:08.113 回答
0

REST API 不呈现短代码,因此您必须强制它。创建一个文件 wp-content/mu-plugins/render-xyz-shortcodes.php。您可能必须为其创建 mu-plugin,因为默认情况下它不存在。

<?php

/**
* Render the shortcode in wp-json API
*/

add_action( 'rest_api_init', function () {
    register_rest_field(
        'post',
        'content',
        array(
            'get_callback'    => 'render_xyz_do_shortcode',
            'update_callback' => null,
            'schema'          => null,
        )
    );

    register_rest_field(
        'post',
        'excerpt',
        array(
            'get_callback'    => 'render_xyz_do_shortcode',
            'update_callback' => null,
            'schema'          => null,
        )
    );
});

function render_xyz_do_shortcode( $object, $field_name, $request ) {

    global $post;
    $post = get_post($object['id']);

    $output = array();

    //Apply the_content's filter, one of them interpret shortcodes
    switch( $field_name ) {
        case 'content':
            $output['rendered'] =  apply_filters( 'the_content', $post->post_content );
            break;
        case 'excerpt':
            $output['rendered'] =  apply_filters( 'the_excerpt', $post->post_excerpt );
            break;
    }

    $output['protected'] = false;

    return $output;
}
于 2019-01-10T22:53:32.067 回答