创建一个包含子页面的页面,并让每个子页面都有自己的页面模板

问题描述 投票:0回答:1

我有一些代码可以在 WordPress 中创建带有子页面的页面。我想做的是让每个孩子都有自己的页面模板。 如下所示,我正在创建脚本和资产的子页面。目前,子页面是在所有内容中添加一个 page_Full.php 创建的,但我希望脚本和资产有自己的页面模板。想法会有帮助。 提前致谢。

function CreatePage(){

    $post_title = $_POST['ProjectName'];
    $post_excerpt = $_POST['ProjectDiscript'];
    $tags = $_POST['TypeOption'];

    $pages = array(
        array(
            'name'  => $post_title,
            'title' => $post_title,
            'child' => array(
                'script' => $post_title.'_Script',
                'assets' => $post_title.'_Assets'
            )
        )

    );

    $template = array(
        'post_type'   => 'page',
        'post_status' => 'publish',
        'post_author' => $user_id,
        'post_excerpt'  => $post_excerpt,
        'tags_input'  => array($tags),
    );

    foreach( $pages as $page ) {
        $exists = get_page_by_title( $page['title'] );
        $my_page = array(
            'post_name'         => $page['name'],
            'post_title'        => $page['title'],
            'page_template'     => 'page_Full.php'

        );
        $my_page = array_merge( $my_page, $template );

        $id = ( $exists ? $exists->ID : wp_insert_post( $my_page ) );

        if( isset( $page['child'] ) ) {
            foreach( $page['child'] as $key => $value ) {
                $child_id = get_page_by_title( $value );
                $child_page = array(
                    'post_name'         => $key,
                    'post_title'        => $value,
                    'post_parent'       => $id,
                    'page_template'     => 'page_Full.php'
                );
                $child_page = array_merge( $child_page, $template );
                if( !isset( $child_id ) ) wp_insert_post( $child_page );
            }
        }
    }
    wp_die();

}

add_action( 'wp_ajax_CreatePage','CreatePage' );
php wordpress wordpress-theming custom-wordpress-pages
1个回答
0
投票

有为每个子页面创建一个数组的想法 - 它看起来很有效。也许还有更好的方法,但暂时 - 这可以解决问题!

 $pages = array(
    array(
        'name'  => $post_title,
        'title' => $post_title,
        'child' => array(
                'script' => array(
                                'Pname'      => $post_title.'_Script',
                                'Ptemplate'  => 'page_Full_Script.php'
                                ),
                'assets' => array(
                                'Pname'     => $post_title.'_Assets',
                                'Ptemplate' => 'page_Full_Assets.php'
                ),
                'settings' => array(
                    'Pname'     => $post_title.'_Settings',
                    'Ptemplate' => 'page_Full_Settings.php'
                 )
        )
    )

);

这是带有子数组的子项。

if( isset( $page['child'] ) ) {
        foreach( $page['child'] as $key[] => $value ) {
            $child_id = get_page_by_title( $value );
            $child_page = array(
                'post_name'         => $value['Pname'],
                'post_title'        => $value['Pname'],
                'post_parent'       => $id,
                'page_template'     => $value['Ptemplate'],
            );
            $child_page = array_merge( $child_page, $template );
            if( !isset( $child_id ) ) wp_insert_post( $child_page );
        }
    }

这里将子数组设置为要迭代的 var,以便可以将信息插入到要合并的 child_page var 中并插入帖子。 感谢所有花时间评论的人。 干杯

© www.soinside.com 2019 - 2024. All rights reserved.