我正在开发一个非常简单的 wordpress 项目。其中一个页面将包含我的项目的缩略图和一些文本,当我单击缩略图时,它会将我带到与项目对应的页面。我创建了一个模板,我试图在其中包含另一个仅包含缩略图的模板。我希望能够从 wordpress 仪表板的两个不同页面更新缩略图和文本。这就是我到目前为止所拥有的......这个概念有点愚蠢......如果我解释正确,请告诉我
假设这是渲染模板
<?php
/*
Template Name: projects
* This template displays project thumbnails and introductory copy as a rendering template
*/
$options = twentyeleven_get_theme_options();
$current_layout = $options['theme_layout'];
get_header();?>
<div id="primary">
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<? /*php comments_template( '', true ); */?>
<?php endwhile; // end of the loop. ?>
<?php get_template_part( 'projectThumb', 'true' ); ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>
这是缩略图模板。
<?php
/*
Template Name: projectThumb
* This template displays project thumbnails at the project page
*/
$options = twentyeleven_get_theme_options();
$current_layout = $options['theme_layout'];
get_header();?>
<div id="primary">
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>