カテゴリを使用します。PersonまたはTeamまたはその効果をもたらす何かと呼ばれる新しいカテゴリを作成します。次に、名前に投稿タイトルを使用します。他の情報を投稿に入れて、その画像を注目の画像に追加できます。
別のテンプレートファイルをコピーし、このようなヘッダーを付けて名前を付けることにより、このページの新しいテンプレートを作成します。
<?
/*
Template Name: About Us / Team / Whatever
*/
?>
そして、ページでは、次のようなもので必要な情報のみを呼び出します。
//Set up the Loop
<?php
global $post;
$args = array (
'category' => 4,
'order' => 'ASC');
$teamposts = get_posts( $args );
foreach( $teamposts as $post ) : setup_postdata($post); ?>
//Call the information you want - put them in <li> if you need
<?php the_title();?>
<?php the_excerpt();?> //OR the_content
<?php the_post_thumbnail('new-image-size');?>
//Close the loop
<?php endforeach; ?>
次に、必要な他の情報を呼び出すか、同じページで別のループを実行して他の情報を呼び出すことができます。
'new-image-size'と呼ばれる適切なサイズのサムネイルを取得するには、これを設定するために、functions.phpファイルに次のような行を追加します。
// Post Thumbnails
add_theme_support( 'post-thumbnails' );
// name of the thumbnail, width, height, crop mode
add_image_size( 'front-page-services', 450, 270, true );