0

我有一个带有 slug /en/work/ 的子页面,我想使用 slug 找到的页面模板。我已经上传了 page-work.php 和 page-en-work.php,但是当我导航到页面时,它们都没有被使用。

4

1 回答 1

1

看看下面的链接

http://codex.wordpress.org/Function_Reference/get_template_part

<?php while ( have_posts() ) : the_post(); ?>
  <?php get_template_part( 'content', 'page' ); ?>
  <?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>

并在自定义页面模板(“my_child.php”)上包含如下文件:

<?php while ( have_posts() ) : the_post(); ?>
  <?php get_template_part( 'content', 'my_child' ); ?>
<?php endwhile; // end of the loop. ?>

现在您可以像这样在其他页面上包含 get_template_part :

 <?php

    global $wp_query;

    // is Page a parent page
    if ( $post->post_parent == 0 ) {

        // on a parent page, get child pages
        $pages = get_pages( 'hierarchical=0&parent=' . $post->ID );

        // loop through child pages
        foreach ( $pages as $post ){

            setup_postdata( $post );

            // get the template name for the child page
            $template_name = get_post_meta( $post->ID, '_wp_page_template', true );
            $template_name = ( 'default' == $template_name ) ? 'page.php' : $template_name;

            // default page template_part content-page.php
            $slug = 'page';

            // check if the slug exists for the child page
            if ( locate_template( 'content-' . basename( $template_name ) , $load, $require_once ) != '' ) {
                $slug = pathinfo( $template_name, PATHINFO_FILENAME );
            }

            // load the content template for the child page
            get_template_part( 'content', $slug );
        }
    }
    ?>
于 2013-09-10T06:42:57.283 回答