我使用钉板主题(它的结构非常复杂,但很好)。
Image how it works以这种方式选择模板,它会更改所有帖子、页面等,并且不会给您更多选择。
我尝试过使用索引文件,但它对我来说太混乱了。
<?php get_header(); ?>
<?php if( is_home() && ! is_paged() ) : ?>
<?php if( pinboard_get_option( \'slider\' ) ) : ?>
<?php get_template_part( \'slider\' ); ?>
<?php endif; ?>
<?php get_sidebar( \'wide\' ); ?>
<?php get_sidebar( \'boxes\' ); ?>
<?php elseif( ( is_home() && is_paged() ) || ( ! is_home() && pinboard_get_option( \'location\' ) ) ) : ?>
<?php pinboard_current_location(); ?>
<?php endif; ?>
<div id="container">
<section id="content" <?php pinboard_content_class(); ?>>
<?php if( is_category( pinboard_get_option( \'portfolio_cat\' ) ) || ( is_category() && cat_is_ancestor_of( pinboard_get_option( \'portfolio_cat\' ), get_queried_object() ) ) ) : ?>
<?php pinboard_category_filter( pinboard_get_option( \'portfolio_cat\' ) ); ?>
<?php endif; ?>
<?php if( have_posts() ) : ?>
<div class="entries">
<?php while( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', get_post_format() ); ?>
<?php endwhile; ?>
</div><!-- .entries -->
<?php pinboard_posts_nav(); ?>
<?php else : ?>
<?php pinboard_404(); ?>
<?php endif; ?>
</section><!-- #content -->
<?php if( \'no-sidebars\' != pinboard_get_option( \'layout\' ) && \'full-width\' != pinboard_get_option( \'layout\' ) && ! is_category( pinboard_get_option( \'portfolio_cat\' ) ) && ! ( is_category() && cat_is_ancestor_of( pinboard_get_option( \'portfolio_cat\' ), get_queried_object() ) ) ) : ?>
<?php get_sidebar(); ?>
<?php endif; ?>
<div class="clear"></div>
</div><!-- #container -->
我登上了头版。php的代码来自模板博客全文。php
<?php get_header(); ?>
<?php global $pinboard_page_template; ?>
<?php $pinboard_page_template = \'template-blog-full-width.php\'; ?>
<?php if( pinboard_get_option( \'location\' ) ) : ?>
<?php pinboard_current_location(); ?>
<?php endif; ?>
<div id="container">
<section id="content" class="column onecol">
<?php $args = array( \'posts_per_page\' => get_option( \'posts_per_page\' ), \'paged\' => max( 1, get_query_var( \'paged\' ) ) ); ?>
<?php if( pinboard_get_option( \'blog_exclude_portfolio\' ) ) : ?>
<?php $args[\'cat\'] = \'-\' . pinboard_get_option( \'portfolio_cat\' ); ?>
<?php endif; ?>
<?php global $wp_query, $wp_the_query; ?>
<?php $wp_query = new WP_Query( $args ); ?>
<?php if( $wp_query->have_posts() ) : ?>
<div class="entries">
<?php while( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
<?php get_template_part( \'content\', get_post_format() ); ?>
<?php endwhile; ?>
</div><!-- .entries -->
<?php pinboard_posts_nav(); ?>
<?php else : ?>
<?php pinboard_404(); ?>
<?php endif; ?>
<?php wp_reset_postdata(); ?>
<?php $wp_query = $wp_the_query; ?>
</section><!-- #content -->
<div class="clear"></div>
</div><!-- #container -->
但看起来很糟糕
my site我想有一个主页模板:模板博客全宽。phpand其余将由选项定义。
如果有什么不清楚的地方,我会尽力解释。