Answers for "get template wordpress"

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 template name wordpress

get_page_template_slug()

if (get_page_template_slug() =='page-workflow.php' ) {
  //stuff
}
Posted by: Guest on April-15-2020

Code answers related to "get template wordpress"

Browse Popular Code Answers by Language