コンテンツへスキップ

function

WordPress へようこそ。こちらは最初の投稿です。編集または削除し、コンテンツ作成を始めてください。

function custom_enqueue_styles() {
    // 現在の投稿のスラッグを取得
    global $post;
    $post_slug = $post->post_name;

    // スラッグが '80th' の場合のみ、特定の CSS を読み込む
    if ($post_slug === '80th') {
        wp_enqueue_style('80th-styles', get_template_directory_uri() . '/assets/80th.css');
    }
}

add_action('wp_enqueue_scripts', 'custom_enqueue_styles');
function custom_enqueue_styles() {
    // トップページの場合のみ、特定の CSS を読み込む
    if (is_front_page()) {
        wp_enqueue_style('80th-styles', get_template_directory_uri() . '/assets/80th.css');
    }
}

add_action('wp_enqueue_scripts', 'custom_enqueue_styles');

「function」への1件のフィードバック

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です