Viewing 1 replies (of 1 total)
  • Plugin Author wpdreams

    (@wpdreams)

    Hi!

    Use the asl_result_date_after_prostproc filter for this purpose. You can put together a small piece of code to add it into your themes functions.php file:

    add_filter( 'asl_result_date_after_prostproc', 'asl_change_date', 1, 2 );
    
    function asl_change_date( $date, $postId ) {
        $timestamp = strtotime($date);
        return date("F j, Y, g:i a", $timestamp);
    }

    change the date functions first parameter accordingly.

Viewing 1 replies (of 1 total)
  • The topic ‘Can we change date format in search result’ is closed to new replies.