Función para obtener y utilizar la url del tema en un shortcode
Shortcode para ahorrarnos poner ruta absoluta a la hora d eir a buscar recursos al directorio del tema. La imagen se encontrará dentro del tema utilizado:a función la insertamos dentro de functions.php
function theme_url_shortcode( $attrs = array (), $content = '' ) {
$theme = ( is_child_theme() ? get_stylesheet_directory_uri() : get_template_directory_uri() );
return $theme;
}
add_shortcode('theme', 'theme_url_shortcode' );
Ejemplo de uso
<img src="[theme]/images/image-name.jpg" width="250" height="250" alt="This is an image" />
Visto en TheWebTaylor
Función para obtener y utilizar la url del tema en un shortcode Leer más »