• Resolved razmokette

    (@razmokette)


    Hello,
    I would like to know how to add a part of the post description in the listing page below the title?
    I have looked everywhere, I guess it happens in the main.php file (that I have already overridden in my theme)?
    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Nithin John

    (@nithi22)

    Hi,

    Thanks for reaching out to us.

    By default, the excerpt is not shown in the listing. But you can use the below code snippet for your purpose.

    function after_awsm_jobs_listing_title() {
        the_excerpt();
    }
    add_action( 'after_awsm_jobs_listing_title', 'after_awsm_jobs_listing_title' );

    Regards
    Nithin John

    Thread Starter razmokette

    (@razmokette)

    Thank you Nithin!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add excerpt in listing page’ is closed to new replies.