arnaudsylvain
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [WPSSO Schema JSON-LD Markup] author imageOk, thanks a lot. You solved it ??
Arnaud
Forum: Plugins
In reply to: [WPSSO Schema JSON-LD Markup] author imageForum: Plugins
In reply to: [Simple Pagination] Simple pagination ne fonctionne pasMerci beaucoup pour cette réponse rapide.
J’avais bien raison, ce n’est pas un problème de plugin mais d’utilisateur.
Merci encore.
Forum: Plugins
In reply to: [Simple Pagination] Simple pagination ne fonctionne pasMa formulation est maladroite. Ce n’est pas “Simple pagination ne fonctionne pas” mais plut?t “Je n’arrive pas à le faire fonctionner”
Forum: Plugins
In reply to: [Simple Pagination] Simple pagination ne fonctionne pasAu cas où, j’insère ici mon fichier single.php
<?php // Exit if accessed directly if ( !defined('ABSPATH')) exit; /** * Single Posts Template * * * @file single.php * @package Responsive * @author Emil Uzelac * @copyright 2003 - 2013 ThemeID * @license license.txt * @version Release: 1.0 * @filesource wp-content/themes/responsive/single.php * @link https://codex.www.ads-software.com/Theme_Development#Single_Post_.28single.php.29 * @since available since Release 1.0 */ get_header(); ?> <div id="content" class="<?php echo implode( ' ', responsive_get_content_classes() ); ?>"> <?php get_template_part( 'loop-header' ); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php responsive_entry_before(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php responsive_entry_top(); ?> <?php get_template_part( 'post-meta' ); ?> <div class="post-entry"> <?php the_content(__('Read more ›', 'responsive')); ?> <?php if ( get_the_author_meta('description') != '' ) : ?> <div id="author-meta"> <?php if (function_exists('get_avatar')) { echo get_avatar( get_the_author_meta('email'), '80' ); }?> <div class="about-author"><?php _e('About','responsive'); ?> <?php the_author_posts_link(); ?></div> <p><?php the_author_meta('description') ?></p> </div><!-- end of #author-meta --> <?php endif; // no description, no author's meta ?> <?php wp_link_pages(array('before' => '<div class="pagination">' . __('Pages:', 'responsive'), 'after' => '</div>')); ?> </div><!-- end of .post-entry --> <div class="navigation"> <?php if(function_exists('wp_simple_pagination')) { wp_simple_pagination(); } ?> </div><!-- end of .navigation --> <?php get_template_part( 'post-data' ); ?> <?php responsive_entry_bottom(); ?> </div><!-- end of #post-<?php the_ID(); ?> --> <?php responsive_entry_after(); ?> <?php responsive_comments_before(); ?> <?php comments_template( '', true ); ?> <?php responsive_comments_after(); ?> <?php endwhile; get_template_part( 'loop-nav' ); else : get_template_part( 'loop-no-posts' ); endif; ?> </div><!-- end of #content --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Viewing 5 replies - 1 through 5 (of 5 total)