toandfro
0
Q:

get theme path in wordpress

<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />
3
// 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" />
  
2
echo get_stylesheet_directory_uri();
3
include( get_template_directory_uri() . '/includes/my_file.php' );
0

New to Communities?

Join the community