0

「未分類」を除いて、「ニュース」、「E1」、「E2」の 3 つのカテゴリがあります。同じブログ テンプレートで 2 つのページ (E1、E2) も取得しました。計画は、各ページに「ニュース」のすべてのエントリと、適切な「E*」カテゴリのすべてを表示することです。どうすればいいですか?私が使用しているテーマは、Theme-Horse の Attitude-Free です。

<?php
/**
 * Template Name: Blog Full Content Display
 *
 * Displays the Blog with Full Content Display.
 *
 * @package Theme Horse
 * @subpackage Attitude
 * @since Attitude 1.0
 */
?>

<?php get_header(); ?>



<?php $args = array(
         'posts_per_page'   => 5,
         'offset'           => 0,
         'category'         => 'E1',
         'orderby'          => 'post_date',
         'order'            => 'DESC',
         'include'          => '',
         'exclude'          => '',
         'meta_key'         => '',
         'meta_value'       => '',
         'post_type'        => 'post',
         'post_mime_type'   => '',
         'post_parent'      => '',
         'post_status'      => 'publish',
         'suppress_filters' => true ); 

 $posts_array = get_posts( $args ); ?>



<?php
/** 
 * attitude_before_main_container hook
     */
    do_action( 'attitude_before_main_container' );
?>
<?php
/**
 * Überschrift
 *
 * bla
 */
?>
<h3>Content:</h3>

<div id="container">
<?php
    /** 
     * attitude_main_container hook
     *
     * HOOKED_FUNCTION_NAME PRIORITY
     *
     * attitude_content 10
         */
        do_action( 'attitude_main_container' );
    ?>
</div><!-- #container -->

<?php
    /** 
     * attitude_after_main_container hook
     */
    do_action( 'attitude_after_main_container' );
?>

<?php get_footer(); ?>
4

1 に答える 1

0

カテゴリのすべての投稿を取得する場合は、 get_posts() ワードプレス関数を使用できます。

例えば

<?php $args = array(
         'posts_per_page'   => 5,
         'offset'           => 0,
         'category'         => 'E1',
         'orderby'          => 'post_date',
         'order'            => 'DESC',
         'include'          => '',
         'exclude'          => '',
         'meta_key'         => '',
         'meta_value'       => '',
         'post_type'        => 'post',
         'post_mime_type'   => '',
         'post_parent'      => '',
         'post_status'      => 'publish',
         'suppress_filters' => true ); 

 $posts_array = get_posts( $args ); ?>

次に、この配列にループして、必要に応じて表示するだけです。

詳細については、こちらのページをご覧ください。

于 2013-09-17T13:44:22.777 に答える