Last active
November 8, 2018 17:25
-
-
Save LeoLopesWeb/7e7ecae5e5918f87b5a09c612a9892c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// caminho do diretório do tema | |
<img src="<?php echo get_stylesheet_directory_uri() ?>/images/.jpg" /> | |
<img src="<?php bloginfo('template_directory'); ?>/images/.jpg" /> | |
// pegar url imagem destacada | |
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), 'thumbnail' ); | |
$thumb[0] | |
// archive custom post type e taxonomy | |
if (is_tax( 'categoria-embarcacao' )): | |
if (is_post_type_archive( 'embarcacao' )): |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment