“Direktori Tema WordPress Uri” Kode Jawaban

Dapatkan URI TempleT

<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />
Black Heart

WordPress Dapatkan URL Template

// Get template directory example:
<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" />

// If you use child theme you will have to use another function:
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo.png" />
  
gtamborero

WordPress Dapatkan Tema Uri

<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png">
gtamborero

Direktori Tema WordPress Uri

add_action('wp_enqueue_scripts', 'wpdocs_scripts_method');
 
/*
 * Enqueue a script with the correct path.
 */
function wpdocs_scripts_method() {
    wp_enqueue_script(
        'custom_script',
        get_template_directory_uri() . '/js/custom_script.js',
        array('jquery')
    );
}
Light Lion

Jawaban yang mirip dengan “Direktori Tema WordPress Uri”

Pertanyaan yang mirip dengan “Direktori Tema WordPress Uri”

Lebih banyak jawaban terkait untuk “Direktori Tema WordPress Uri” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya