1

投稿のサムネイルとフォールバック画像を取得する関数を 1 つ作成しました。

<?php
function png_thumb($class=null,$thumbsize=null,$no_thumb,$imgclass=null,$extras=null,$hover_content=null){

    $title_attr = array(
        'title' => get_the_title(),
        'alt' => get_the_title(),
        'class' => $imgclass
    );  ?>


    <div class="<?php echo $class ?>">
        <a href="<?php the_permalink(); ?>" title="<?php //the_title(); ?>">
            <?php if ( has_post_thumbnail() ) {
                the_post_thumbnail($thumbsize, $title_attr);
            } else { ?>
                <img src="<?php bloginfo('template_directory'); ?>/images/<?php echo $no_thumb ?>" alt="<?php the_title(); ?>" class="<?php echo $imgclass; ?>" <?php echo $extras; ?> />
            <?php } ?>                          
        </a>
        <?php if($hover_content != "") { ?>
        <a href="<?php the_permalink(); ?>"><div class="hovereffect"><?php echo $hover_content; ?></div></a>
        <?php } ?>
    </div>

<?php } ?>

しかし、配列を渡す方がこれよりも優れていると思います。しかし、事前定義されたキーで渡すことができるような関数を作成する方法がわかりません。$title_attr に割り当てられた array() と同じです。または、wordpress $args のしくみ。

4

2 に答える 2

5

「定義済みのキーを持つ配列を渡す」という概念は、PHP が理解できるものではありません。ただし、これは簡単に実行できます。

function png_thumb(array $args = array()) {
    $args += array('class' => null, 'thumbsize' => null, 'no_thumb' => null, 'imgclass' => null, 'extras' => null, 'hover_content' => null);

    echo $args['class'];
    ...

この関数は配列を受け入れ、渡されなかったすべてのキーにデフォルト値を設定します。次のように使用します。

png_thumb(array('thumbsize' => 42, ...));
于 2012-09-28T06:32:23.693 に答える
4

これを試すこともできます

function png_thumb($args=array()) {
    $default= array('class' => null, 'thumbsize' => null, 'no_thumb' => null, 'imgclass' => null, 'extras' => null, 'hover_content' => null);
    $settings=array_merge($default,$args);
    extract($settings); // now you can use variables directly as $class, $thumbsize etc, i.e
    echo $class; // available as variable instead of $settings['class']
    echo $thumbsize; // available as variable instead of $settings['thumbsize']
    ...
}
于 2012-09-28T06:40:02.263 に答える