如何将页面添加到 wordpress 网站并通过自定义插件为其提供特定的短代码

How do I add page to wordpress website and giving it a specific short code via custom plugin

我已经做了一个动作,如果选中设置中的开关,就可以创建一个页面。确认后检查它确实创建了页面,但没有添加模板。如何让我的模板发挥作用?

        add_action( 'admin_init', 'cart_page' );
    function cart_page() {
    //Add cart page to website
    
        if ( get_option( 'cart' ) === "checked" AND get_option('cart_exist') === false) {
    //        IF CART HAS BEEN CHECKED
            $new_page_id = wp_insert_post( array(
                'post_title'     => 'Cart',
                'post_type'      => 'page',
                'post_name'      => 'Cart',
                'comment_status' => 'closed',
                'ping_status'    => 'closed',
                'post_content'   => '',
                'post_status'    => 'publish',
                'post_author'    => get_user_by( 'id', 1 )->user_id,
                'menu_order'     => 0,
                // Assign page template
                'page_template'  => plugins_url('page_templates/cart_template.php', __FILE__ )
    
    
            ) );
            wp_insert_post($new_page_id);
            update_option( 'cart_exist', true );
        }
    
        else if (get_option('cart') === "" AND get_option('cart_exist') === true) {
    //        IF CUSTOMER DOES NOT WANT CART
            update_option( 'cart_exist', false );
        }
    }

这是我的模板页面在插件中的样子。

get_header();

echo do_shortcode( '[cart_portal]' );

get_footer();
?>

就我而言,我已经找到了解决这个简单问题的方法。如果我只需要添加一个短代码,我可以将它添加到 'post_content'。我仍然想知道如何添加模板。但如果您仍然愿意,可以使用文件导入整个布局。但它不能与视觉作曲家一起使用。

参见下面的示例...

 $new_page_id = array(
            'post_title'     => 'Cart',
            'post_type'      => 'page',
            'post_name'      => 'Cart',
            'comment_status' => 'closed',
            'ping_status'    => 'closed',
            'post_content'   => '[cart_portal]',
            'post_status'    => 'publish',
            'post_author'    => get_user_by( 'id', 1 )->user_id,
            'menu_order'     => 0,

        );
        wp_insert_post($new_page_id);