0

いくつかのフィルター コントロールを備えた画像ギャラリーがあります。今は問題なく動作しています。すべて問題ありません。私がする必要がある唯一のことは、featuredフィルターをギャラリー ページに表示されないようにすることです。これは、ホームページ上の画像を引き出すのにのみ使用されるためです。

現在私のプロジェクト ページでは、フィルタ スラッグへのリンクであるリスト アイテムを作成しています。

特集が表示されない場合、私が言えることはありますか?

<?php
// Get the taxonomy
$terms = get_terms('filter');

// set a count to the amount of categories in our taxonomy
$count = count($terms);

// set a count value to 0
$i = 0;

// test if the count has any categories
if ($count > 0) {

    // break each of the categories into individual elements
    foreach ($terms as $term) {

        // increase the count by 1
        $i++;


        $feat = term_exists('featured', 'filter', 'project');
        if ($feat !== 0 && $feat !== null) {
            $feat .= "";
        }



        // rewrite the output for each category
        $term_list .= '<li><a href="javascript:void(0)" class="' . $term->slug . '">' . $term->name . '</a></li>';

        // if count is equal to i then output blank
        if ($count != $i) {
            $term_list .= '';
        } else {
            $term_list .= '';
        }
    }

    // print out each of the categories in our new format
    echo $term_list;
}
?>
               </ul>
4

1 に答える 1