Afficher un div que sur certaine pages (Créer un compte)

  • Statut : non résolu
5 sujets de 1 à 5 (sur un total de 5)
  • Auteur
    Messages
  • #502271
    bond70
    Participant
    Padawan WordPress
    60 contributions

    Bonjour,

    Ma configuration WP actuelle
    – Version de WordPress : 3.2.1
    – Version de PHP/MySQL : 5.2.17
    – Thème utilisé : twenty eleven
    – Extensions en place : n/a
    – Nom de l’hebergeur : n/a
    – Adresse du site : http:/dev.leadcreation.com.au

    Problème(s) rencontré(s) :

    Bonjour,

    J’aimerais afficher la div (ligne 3) : class= »buildingDiv » sur toutes les pages de mon site SAUF la page d’accueil.

    Savez-vous comment faire cela en php ?

    MERCI !

    Ma page : http://dev.leadcreation.com.au

    Code de mon footer :

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the id=main div and all content after
    *
    * @package WordPress
    * @subpackage Twenty_Eleven
    * @since Twenty Eleven 1.0
    */
    ?>
    </div><!-- #main -->

    <div style="clear: both; width: 100%" class="buildingDiv"></div>

    <footer id="colophon" role="contentinfo">

    <?php
    /* A sidebar in the footer? Yep. You can can customize
    * your footer with three columns of widgets.
    */
    get_sidebar( 'footer' );
    ?>
    <div class="mainFooter widget-area">
    <?php if ( ! dynamic_sidebar( 'sidebar-7' ) ) : ?>
    <div id="site-generator">
    <?php do_action( 'twentyeleven_credits' ); ?>
    <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyeleven' ) ); ?> » title= »<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?> » rel= »generator »><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
    </div>
    <?php endif; // end sidebar widget area ?>
    </div>
    </footer><!-- #colophon -->
    </div><!-- #page -->
    <?php wp_footer(); ?>
    </body>
    </html>

    #802845
    Laurent H
    Membre
    Chevalier WordPress
    126 contributions

    <div style="clear: both;width: 100%" class="buildingDiv">

    #802846
    bond70
    Participant
    Padawan WordPress
    60 contributions

    Salut,

    Malheureusement ca ne marche pas. 😕

    Voici le code de mon footer :

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the id=main div and all content after
    *
    * @package WordPress
    * @subpackage Twenty_Eleven
    * @since Twenty Eleven 1.0
    */
    ?>

    <?php
    /* A sidebar in the footer? Yep. You can can customize
    * your footer with three columns of widgets.
    */
    get_sidebar( ‘footer’ );
    ?>

    <a href=" » title= » » rel= »generator »>


    Voici le code de la fonction is_home() présente dans le fichir wp-includes/query.php :

    /**
    * Is the query for the blog homepage?
    *
    * This is the page which shows the time based blog content of your site.
    *
    * Depends on the site’s « Front page displays » Reading Settings ‘show_on_front’ and ‘page_for_posts’.
    *
    * If you set a static page for the front page of your site, this function will return
    * true only on the page you set as the « Posts page ».
    *
    * @see is_front_page()
    *
    * @see WP_Query::is_home()
    * @since 1.5.0
    * @uses $wp_query
    *
    * @return bool True if blog view homepage.
    */
    function is_home() {
    global $wp_query;

    if ( ! isset( $wp_query ) ) {
    _doing_it_wrong( __FUNCTION__, __( ‘Conditional query tags do not work before the query is run. Before then, they always return false.’ ), ‘3.1’ );
    return false;
    }

    return $wp_query->is_home();
    }

    #802847
    Laurent H
    Membre
    Chevalier WordPress
    126 contributions

    Ah. Ton wordpress doit être configuré pour afficher une page statique en home. Dans ce cas là, essaye de remplacer le test sur [c]is_home()[/c] par [c]is_front_page()[/c].

    #802848
    bond70
    Participant
    Padawan WordPress
    60 contributions

    ça marche merci !

5 sujets de 1 à 5 (sur un total de 5)
  • Le forum ‘Utilisation spécifique de WordPress’ est fermé à de nouveaux sujets et réponses.