Answers for "get template directory"

PHP
1

get theme path in wordpress

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

how to get template path in wordpress

/**
 * Enqueue scripts and styles.
 */
function wpdocs_theme_slug_scripts() {
    // Custom scripts require a unique slug (Theme Name).
    wp_enqueue_script( 'theme-slug-custom-script', get_template_directory_uri() . '/js/custom-script.js', array(), '1.0.0', true );
 
    /*
     * To avoid double loading Genericons will not need a slug. Same applies
     * to all other non-custom styles or scripts.
     */
    wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '1.0.0' );
}
add_action( 'wp_enqueue_scripts', 'wpdocs_theme_slug_scripts' );
Posted by: Guest on October-22-2020

Code answers related to "get template directory"

Browse Popular Code Answers by Language