How to search posts by modified date
-
Either with or without ACF Pro fields, what steps can I take with this plugin to search any post by modified date?
I made an attempt of trying ACF Pro’s acf/load action by using the following code in my functions.php file to pre-fill the modified date into a ACF field for an associated Post. But no luck on searching for it yet…
function my_acf_load_dte_modifield_value( $value, $post_id, $field ) { $date_modifield=get_the_modified_date( '', $post_id ); return $date_modifield; } add_filter('acf/load_value/name=mpreloadedvalue', 'my_acf_load_dte_modifield_value', 10, 3);
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to search posts by modified date’ is closed to new replies.