Dans certaines situations, je dois savoir si le message actuellement chargé a une image sélectionnée. Si c'est le cas, je souhaite qu'il affiche un logo différent de celui qui n'a pas d'image sélectionnée associée à la publication.
Cela fonctionne pour le moment, mais ne dispose pas de la fonctionnalité de vérification que je recherche:
<?php echo is_front_page() ? '<h1 id="logo" class="h1 threecol first">' : '<strong id="logo" class="h1 threecol first">'; ?>
<a href="<?php echo home_url(); ?>" rel="nofollow"><img src="<?php header_image() ?>" alt="<?php bloginfo('name'); ?> logo" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" /></a>
<?php echo is_front_page() ? '</h1>' : '</strong>'; ?>
Mon problème est que j'ai consulté la WP documentation de get_posts ou le démarrage d'un nouveau WP_query, mais que je n'ai pas eu la chance de comprendre comment je peux:
Ma pensée avec le if/else serait la suivante:
<?php echo is_front_page() ? '<h1 id="logo" class="h1 threecol first">' : '<strong id="logo" class="h1 threecol first">'; ?>
<a href="<?php echo home_url(); ?>" rel="nofollow">
<? // IF/ELSE CODE TO EXECUTE IF post_has_thumbnail ?>
<?php if ( has_post_thumbnail() ) : ?>
<img src="<?php header_image() ?>" alt="<?php bloginfo('name'); ?> logo" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" />
<?php else : ?>
<img src="/i/logo-no-feat-img.png" alt="<?php bloginfo('name'); ?> logo" height="120" width="222" />
<?php endif; ?>
<? // end ATTEMPTED IF/ELSE CODE ?>
</a>
<?php echo is_front_page() ? '</h1>' : '</strong>'; ?>
CODE DE TRAVAIL
<?php echo is_front_page() ? '<h1 id="logo" class="h1 threecol first">' : '<strong id="logo" class="h1 threecol first">'; ?>
<a href="<?php echo home_url(); ?>" rel="nofollow">
<? // IF/ELSE CODE TO EXECUTE IF post_has_thumbnail ?>
<?php if (is_home() || has_post_thumbnail(get_the_ID()) ) : ?>
<img src="<?php header_image() ?>" alt="<?php bloginfo('name'); ?> logo" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" />
<?php else : ?>
<img src="<?php echo get_template_directory_uri(); ?>/library/images/logo-without-feat_img.png" alt="<?php bloginfo('name'); ?> logo" height="302" width="203" />
<?php endif; ?>
<? // end IF/ELSE CODE ?>
</a>
<?php echo is_front_page() ? '</h1>' : '</strong>'; ?>
has_post_thumbnail()
accepte un post ID:
if ( is_singular() and has_post_thumbnail( get_the_ID() )
{
// show post thumbnail
}
elseif ( is_front_page() )
{
// show front page content
}
else
{
// do something else
}