Title étrange

WRInaute impliqué
Bon voila, par hasard, je regardais la source de ma home. et je vois ca :

Code:
<h2 class="title"><a href="http://www.unpoildanslamain.fr/cadre-photo-billet-100-dollars-9-90e/" title="Lien vers" rel="bookmark">Cadre photo billet 100$ – 9.90€</a></h2>

Par contre dans l'article il s'affiche comme ça :

Code:
 <h1 class="title">Cadre photo billet 100$ &#8211; 9.90€</h1>

Je trouve étrange le title="lien vers"... Qu'en pensez-vous?
 
WRInaute impliqué
ca vient du code source...

Voici la source
Code:
 <h2 class="title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'themater' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php shortened_title(); ?></a></h2>
 
WRInaute impliqué
Code:
<?php shortened_title(); ?>

Me permet d'afficher le titre de l'article avec un nombre de caractéres. Par contre je pense que le pb vient de :

Code:
 title="<?php printf( esc_attr__( 'Permalink to %s', 'themater' ), the_title_attribute( 'echo=0' ) ); ?>"

Permalink to est traduit dans mon .PO "lien vers" normalement title attribut devrait afficher le titre de l'article c'est bien ça?
 
WRInaute impliqué
Marie Aude d'après toi si je change mon code par ça:

Code:
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute( array( 'before' => 'Permalink to: ', 'after' => '' ) ); ?>"><?php shortened_title(); ?></a>

Tu pense que google comprendra mieux ou pour toi ca ne changera rien?
 
WRInaute impliqué
Bon ca me donne ça maintenant

Code:
<h2 class="title"><a href="http://www.unpoildanslamain.fr/moulin-a-piment-24-90e/" title="Permalink to: Moulin à piment &#8211; 24.90€">Moulin à piment – 24.90€</a></h2>

NE faudrait il pas enlever le "permalink to:" ?
 
Discussions similaires
Haut