Answers for "wordpress get theme uri"

PHP
2

wordpress get template url

// 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" />
Posted by: Guest on July-13-2020
1

get theme path in wordpress

include( get_template_directory_uri() . '/includes/my_file.php' );
Posted by: Guest on August-14-2020
0

wordpress get theme uri

<?php echo get_template_directory_uri(); ?>/images/logo.png">
Posted by: Guest on June-07-2021
0

wordpress theme directory 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')
    );
}
Posted by: Guest on May-21-2021

Browse Popular Code Answers by Language