Bonjour,
Ma configuration WP actuelle
– Version de WordPress : 3.2.1
– Version de PHP/MySQL : 5
– Thème utilisé : twentyten
– Extensions en place :
– Nom de l’hebergeur :
– Adresse du site : http://sieg.agencepulsi.com/
Problème(s) rencontré(s) :
Sur ma page d’index, je veux animer une carte. Lorsque l’on clique sur une zone cela fait appel à une page mais tout en restant sur la page d’accueil (zone où s’afficherait les infos de la carte) cf site…
Est ce que quelqu’un peut m’aider sur le code de la page index.php ?
Voici ce que j’ai mis et actuellement il m’affiche les derniers articles…
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
get_header(); ?>
<div id="container">
<div id="content" role="main">
<?php
include (ABSPATH . '/wp-content/plugins/wp-content-slideshow/content-slideshow.php');
?>
<div><img src="http://sieg.agencepulsi.com/wp-content/themes/twentyten/images/carte.png" width="830" height="459" alt="carte" /></div>
<?php
get_template_part( 'loop', 'pageCarte' );
?>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
et dans mon loop-pageCarte.php
<?php
/**
* The loop that displays a page.
*
* The loop displays the posts and the post content. See
* http://codex.wordpress.org/The_Loop to understand it and
* http://codex.wordpress.org/Template_Tags to understand
* the tags used in it.
*
* This can be overridden in child themes with loop-page.php.
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.2
*/
?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?> » <?php post_class(); ?>>
<?php if ( is_front_page() ) { ?>
<h2 class="entry-title"><?php the_title(); ?></h2>
<?php } else { ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php } ?>
<div class="entry-content-seul">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => ‘<div class="page-link">‘ . __( ‘Pages:’, ‘twentyten’ ), ‘after’ => ‘</div>‘ ) ); ?>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">‘, ‘</span>‘ ); ?>
</div><!-- .entry-content -->
</div><!-- #post-## -->
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>