Last active
April 29, 2022 06:17
-
-
Save Elgameel/9511b7d9b84ba035fd678bea33f73bfa to your computer and use it in GitHub Desktop.
Add the following code to your Genesis Child theme functions.php file. Read the full guide here: https://wp-me.com/last-updated-date-post-meta-data-genesis/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // Ignore this line | |
/* | |
* Replace Post publish date with Post update date in Genesis | |
* More info: https://wp-me.com/last-updated-date-post-meta-data-genesis/ | |
*/ | |
add_filter( 'genesis_post_info', 'wpme_post_info_filter' ); | |
function wpme_post_info_filter($post_info) { | |
if ( !is_page() ) { | |
$post_info = '[post_modified_date] ' . __( 'by', 'genesis' ) . ' [post_author_posts_link] [post_comments] [post_edit]'; | |
return $post_info; | |
} | |
} | |
// Ignore this line ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment