Answers for "get url image 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
2

get featured image url

echo get_the_post_thumbnail_url();
Posted by: Guest on June-29-2020
0

wordpress get uploads images url

wp_get_attachment_image_src( int $attachment_id, string|int[] $size = 'thumbnail', bool $icon = false )
Posted by: Guest on June-01-2021

Code answers related to "get url image wordpress"

Browse Popular Code Answers by Language