1

以下は、メニューのサムネイル画像を取り込むWordpress関数です。サムエールがない場合に「サムエールなし」を表示するためにif/elseを追加するにはどうすればよいですか?

私が試してみました:

$item_output .= apply_filters( 'menu_item_thumbnail' , ( !isset( $args->thumbnail ) && $args->thumbnail ) ) ? 'no thumbnail' : '';

しかし、これは効果がありませんでした。これがばかげた質問なら申し訳ありませんが、私はPHPを知りません。

関数:

class Menu_With_Description extends Walker_Nav_Menu {
    function start_el(&$output, $item, $depth, $args) {
        global $wp_query;


        // get user defined attributes for thumbnail images
        $attr_defaults = array( 'class' => 'nav_thumb' , 'alt' => esc_attr( $item->attr_title ) , 'title' => esc_attr( $item->attr_title ) );
        $attr = isset( $args->thumbnail_attr ) ? $args->thumbnail_attr : '';
        $attr = wp_parse_args( $attr , $attr_defaults );

        $item_output = $args->before;

        // thumbnail image output
        $item_output .= ( isset( $args->thumbnail_link ) && $args->thumbnail_link ) ? '<a' . $attributes . '>' : '';
        $item_output .= apply_filters( 'menu_item_thumbnail' , ( isset( $args->thumbnail ) && $args->thumbnail ) ? get_the_post_thumbnail( $item->object_id , ( isset( $args->thumbnail_size ) ) ? $args->thumbnail_size : 'thumbnail' , $attr ) : '' , $item , $args , $depth );
        $item_output .= ( isset( $args->thumbnail_link ) && $args->thumbnail_link ) ? '</a>' : '';

        // menu link output
        $item_output .= '<a'. $attributes .'>';
        $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
        $item_output .= '</a>';

        // menu description output based on depth
        $item_output .= ( $args->desc_depth >= $depth ) ? '<br /><span class="sub">' . $item->description . '</span>' : '';

        // close menu link anchor
        $item_output .= $args->after;

        $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
    }
}

これは私のメニューに上記を適用します:

add_filter( 'wp_nav_menu_args' , 'my_add_menu_descriptions' );
function my_add_menu_descriptions( $args ) {
    if ( $args['theme_location'] == 'my_menu' ) {
         $args['walker'] = new Menu_With_Description;
         $args['desc_depth'] = 0;
         $args['thumbnail'] = true;
         $args['thumbnail_link'] = true;
         $args['thumbnail_size'] = 'homeboxes';
         $args['thumbnail_attr'] = array( 'class' => 'nav_thumb my_thumb' , 'alt' => 'test' , 'title' => 'test' );
        }
    return $args;   
    }
4

1 に答える 1

1

クラスを変更しないでください。代わりにこのフィルターを使用してください。

add_filter( 'menu_item_thumbnail', 'so_13368049_change_thumb', 10, 4 );

function so_13368049_change_thumb( $thumb, $item , $args , $depth )
{
    if( '' == $thumb )
        return 'No thumbnail';

    return $thumb;
}

また、クラスを変更する場合は、次のようになります:(
'NO THUMBNAIL'代わりに''

    $item_output .= apply_filters( 'menu_item_thumbnail' , ( isset( $args->thumbnail ) && $args->thumbnail ) ? get_the_post_thumbnail( $item->object_id , ( isset( $args->thumbnail_size ) ) ? $args->thumbnail_size : 'thumbnail' , $attr ) : 'NO THUMBNAIL' , $item , $args , $depth );
于 2012-11-15T14:25:34.957 に答える