Reply To: tag list
Home › Forums › WordPress Themes – Premium › Pure & Simple › tag list › Reply To: tag list
February 29, 2016 at 7:08 am
#22509
Moderator
hy Sandrine,
Here is the code with modification
/**
* Prints HTML with meta information for the current post-date/time and author.
*/
function puresimple_posted_on() {
$time_string = '%2$s';
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
$time_string .= '%4$s';
}
$time_string = sprintf( $time_string,
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date('j F Y') ),
esc_attr( get_the_modified_date( 'c' ) ),
esc_html( get_the_modified_date() )
);
$posted_on = sprintf(
_x( 'Publié le %s', 'post date', 'puresimple' ),
'' . $time_string . ''
);
$byline = sprintf(
_x( 'par %s', 'post author', 'puresimple' ),
'' . esc_html( get_the_author() ) . ''
);
echo '' . $posted_on . ' ' . $byline . '';
//show category on blog page
if(get_theme_mod('hide_category_on_blog_page') !== '' && is_home()){echo ' '.'' .__('Categorie :','puresimple').get_the_category_list(__( ', ', 'puresimple' )).'';}
//show category on single post
if(get_theme_mod('hide_category_on_single_post') !== '' && is_single()){echo ' '.'' .__('Categorie :','puresimple').get_the_category_list(__( ', ', 'puresimple' )).'';}
if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) {
echo '';
echo '';
_e( ' ', 'puresimple' );
comments_popup_link( __( 'commentaire', 'puresimple' ), __( '1 commentaire', 'puresimple' ), __( '% commentaires', 'puresimple' ) );
}
echo '';
echo '';
echo '';
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( '', esc_html__( ', ', 'puresimple' ) );
if ( $tags_list ) {
printf( '' . esc_html__( 'Mots clés : %1$s', 'puresimple' ) . '', $tags_list ); // WPCS: XSS OK.
}
echo '';
}
endif;
hope this is heplfull for u
thanks
Recommended Hosting