get_template_directory_uri
/* get logo or image */
<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />
get_template_directory_uri
/* get logo or image */
<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />
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' );
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us