web-dev-qa-db-fra.com

L'instruction conditionnelle if ($ post-> ID == get_the_ID) ne fonctionne pas

Le code suivant doit apparaître: Si le type de publication personnalisé actuel (bbp_forum) est celui qui est affiché, affectez le class 'current' à sa balise <li> respective. Mais pour une raison quelconque, la classe 'current' (pour mettre en surbrillance le lien bbp_forum actuel) est affichée dans toutes les balises <li>:

enter image description here

<body <?php body_class(); ?>>
<div id="wrapper" class="hfeed">
    <div id="header">
        <div id="masthead">
            <div id="branding" role="banner">
                <h1><a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
            </div><!-- #branding -->
            <div id="access" role="navigation">
                <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
            </div><!-- #access -->
        </div><!-- #masthead -->
        <ul id="forums">
          <?php global $post; $cat_posts = get_posts('post_type=bbp_forum');
          foreach($cat_posts as $post) : ?>
            <li <?php if($post->ID == get_the_ID()){ ?>class="current" <?php } ?>>
                <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
             </li>
          <?php endforeach; ?>
        </ul><!-- #access -->
    </div><!-- #header -->

    <div id="main">

Aucune suggestion?

1
janoChen

L'expression sera toujours vraie. Jetez un coup d'œil à get_the_ID();

function get_the_ID() {
    global $post;
    return $post->ID;
}

Donc, votre code fonctionne efficacement en tant que;

if ( $post->ID == $post->ID ) // always true!

Cachez plutôt l'identifiant de la publication principale dans une variable, puis comparez-le à la place.

<?php

global $post;

/**
 * @var int Current post ID.
 */
$the_post_ID = $post->ID;

/**
 * @var array All posts for bbp_forum.
 */
$cat_posts = get_posts('post_type=bbp_forum');

?>

<?php foreach ( $cat_posts as $post ) : ?>

    <li<?php if ( $post->ID == $the_post_ID ) echo ' class="current"'; ?>>
        <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
    </li>

<?php endforeach; ?>
2
TheDeadMedic