- This topic has 3 replies, 2 voices, and was last updated 4 years, 7 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Aspire Theme Support › Add text before date
Hi,
I’m new here. I would like to add the word “Last updated <date>” below the single post title and before the date. Anyone can help me?
My img attachment might help. Thank you.
Hi Wes, thank you for the reply. I’ve added at the bottom of the functions.php, but it still show the same.
genesis_register_sidebar( array(
‘id’ => ‘front-page-13’,
‘name’ => __( ‘Front Page 13’, ‘aspire’ ),
‘description’ => __( ‘This is the front page 13 section.’, ‘aspire’ ),
) );
add_filter( ‘genesis_post_info’, ‘custom_post_info_filter’ );
function custom_post_info_filter($post_info) {
$post_info = ‘by [post_author_posts_link] Last Updated on [post_date] [post_edit]‘;
return $post_info;
}