web-dev-qa-db-ja.com

カスタム投稿タイプのサムネイルを取得する

カスタム投稿タイプのサムネイルのURLを取得する必要があります。カスタム投稿タイプの名前はスライダーです。 functions.phpを定義しました。

/* Custom post type */
add_action('init', 'slider_register');

function slider_register() {

    $labels = array(
        'name' => __('Slider', 'post type general name'),
        'singular_name' => __('Slider Item', 'post type singular name'),
        'add_new' => __('Add New', 'portfolio item'),
        'add_new_item' => __('Add New Slider Item'),
        'edit_item' => __('Edit Slider Item'),
        'new_item' => __('New Slider Item'),
        'view_item' => __('View Slider Item'),
        'search_items' => __('Search Slider'),
        'not_found' =>  __('Nothing found'),
        'not_found_in_trash' => __('Nothing found in Trash'),
        'parent_item_colon' => ''
    );

    $args = array(
        'labels' => $labels,
        'public' => true,
        'publicly_queryable' => true,
        'show_ui' => true,
        'query_var' => true,
        'menu_icon' => get_stylesheet_directory_uri() . '/image/slider.png',
        'rewrite' => true,
        'capability_type' => 'post',
        'hierarchical' => false,
        'menu_position' => null,
        'supports' => array('title','editor','thumbnail')
        );

    register_post_type( 'slider' , $args );
    flush_rewrite_rules();
}

add_filter("manage_edit-slider_columns", "slider_edit_columns");

function slider_edit_columns($columns){
    $columns = array(
        "cb" => "<input type='checkbox' />;",
        "title" => "Portfolio Title",
    );

    return $columns;
}

私のコードは:

<!-- Slider -->
<?php
    $args = array(
        'post_type'=> 'post',
        'post_status' => 'publish',
        'order' => 'DESC',
        'tax_query' => array(
            array(
                'post-type' => array('post', 'slider')
            )
        )
    );
    $query = new WP_Query($args);
    if( $query -> have_posts() ) {
?>
    <div id="slider_area">
        <div class="slider">
            <a href='#' class="prev"><i class="fa fa-angle-double-left"></i></a>
            <a href='#' class="next"><i class="fa fa-angle-double-right"></i></a>
            <ul class="slider_list">
                <?php
                    while($query->have_posts()) : $query->the_post();
                        if(has_post_thumbnail()) { ?>
                            <li>
                                <?php the_post_thumbnail(); ?>
                            </li>
                        <?php }
                         elseif($thumbnail = get_post_meta($post->ID, 'image', true)) { ?>
                             <li>
                                 <img src="<?php echo $thumbnail; ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" />
                             </li>
                     <?php } endwhile;
                 ?>
            </ul>
        </div>
    </div>
<?php } ?>

何が問題ですか?誰かが私を手伝ってくれる?ご協力ありがとうございました。

1
Ali Dayan

これでwhileループを更新してください。サムネイルのURLが表示されます。

** POSTフェッチ引数

<?php 
/**** Slider Call Function ****/
function callTheSlider()
{
    $args = array('post_type'=> 'expro_slider', 'post_status' => 'publish', 'order' => 'DESC');
    ?>
    <ul>
    <?php
    wp_reset_query();
    $query = new WP_Query($args);
    while($query->have_posts()) : $query->the_post();
            if(has_post_thumbnail()) {  ?>
            <li>
                <?php the_post_thumbnail(); ?>
            </li>
        <?php }
        elseif($thumbnail = get_post_meta($post->ID, 'image', true)) { echo 12323; ?>
            <li>
                <img src="<?php echo $thumbnail; ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" />
            </li>
        <?php } endwhile;
        ?>
        </ul>
    <?php
}
?>
1
BlueSuiter

あなたが使うべきです

'post_type' => array( 'slider' ),

これは、sliderという名前の投稿タイプではないコンテンツを表示するために使用するべきものです。

'post_type' => 'post',
1
Dev