|
<?php |
|
|
|
// Remove notification from 'the_content' |
|
add_filter( 'old_post_notification_on_content', '__return_false' ); |
|
|
|
/** |
|
* Add notification to 'genesis_before_post_content' |
|
* |
|
* Uses the 'old_post_notification_display' filter which displays the notification. |
|
* It's wrapped in a function and then placed where needed. |
|
* Alternatively, you could just put this in your template file: |
|
* echo apply_filters( 'old_post_notification_display', '' ); |
|
*/ |
|
function be_old_notification() { |
|
echo apply_filters( 'old_post_notification_display', '' ); |
|
} |
|
|
|
add_action( 'genesis_before_post_content', 'be_old_notification' ); |