要在WordPress中隨機顯示指定分類下的內容標簽,你可以使用以下方法:

首先,在你的主題文件夾中找到functions.php文件。如果沒有這個文件,你可以創建一個新的functions.php文件并將其上傳到主題文件夾。在functions.php文件中,添加以下代碼:

function get_random_tags_from_specific_category($category_id, $num_tags = 66) {
    // Retrieve articles under the specified category wodepress.com
    $args = array(
        'category' => $category_id,
        'post_type' => 'post',
        'posts_per_page' => -1,
    );
    $posts = get_posts($args);

    // Retrieve all tags from the article
    $tags = array();
    foreach ($posts as $post) {
        $post_tags = get_the_tags($post->ID);
        if ($post_tags) {
            foreach ($post_tags as $tag) {
                $tags[] = $tag;
            }
        }
    }

    // Randomly select tags
    shuffle($tags);
    return array_slice($tags, 0, $num_tags);
}

這個函數接受兩個參數:$category_id(你要從中獲取標簽的指定分類ID)和$num_tags(要返回的標簽數量,默認為66)。

現在,你可以在主題模板文件中使用此函數來隨機顯示指定分類下的標簽。例如,在index.php文件中添加以下代碼:

// Wodepress.com Replace with the category ID of the label you want to display 
$category_id = 1;

// Get random tags
$random_tags = get_random_tags_from_specific_category($category_id);

// Display Label
if (!empty($random_tags)) {
    echo '<ul>';
    foreach ($random_tags as $tag) {
        echo '<li><a href="' . get_tag_link($tag->term_id) . '" title="' . esc_attr($tag->name) . '">' . $tag->name . '</a></li>';
    }
    echo '</ul>';
}

請確保將$category_id變量設置為你要從中獲取標簽的實際分類ID。現在,你的網站上會隨機顯示指定分類下的內容標簽。