• Hello,

    I’m very new to WordPress and I’m setting my first WordPress website.
    I wanted to add the addthisevent script to Blog Posts page, next to “Read More” button (which clicks through to single post page).

    So I’m trying to do this:

    $j(".post_more").append('
    <div title="Add to Calendar" class="addthisevent">
    Add to Calendar
    <span class="start">06/18/2015 09:00 AM</span>
    <span class="end">06/18/2015 11:00 AM</span>
    <span class="title">Summary of the event</span>
    <span class="description">Description of the event</span>
    <span class="location">London</span>
    <span class="all_day_event">false</span>
    <span class="date_format">MM/DD/YYYY</span>
    </div>');

    My question is, how can I insert the posts’ meta, like date, title, excerpt on Blog Posts List Page?

    Thanks.

The topic ‘Getting paramters from Blog Posts Page’ is closed to new replies.