get template part wordpress plugin code example
Example 1: 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" />
Example 2: get template name wordpress
get_page_template_slug()
if (get_page_template_slug() =='page-workflow.php' ) {
//stuff
}
Example 3: get template part wordpress
<?php get_template_part( 'partials/content', 'page' ); ?>
Example 4: get template part wordpress
// You wish to make $my_var available to the template part at `content-part.php`
set_query_var( 'my_var', $my_var );
get_template_part( 'content', 'part' );