Plugin Directory

Changeset 897364


Ignore:
Timestamp:
04/18/2014 01:32:53 PM (12 years ago)
Author:
Strunker
Message:

Default wordpress date for new posts used

File:
1 edited

Legend:

Unmodified
Added
Removed
  • presseportal/trunk/Presseportal.php

    r801458 r897364  
    340340    $post_title = $story->title;
    341341
    342     // Publish date
    343     $post_date = (empty($story->published) ? time() : strtotime($story->published));
    344 
    345342    // Category. Use special category for resource or default if none is defined.
    346343    $post_category = presseportal_get_option(PRESSEPORTAL_RESOURCE_CATEGORY_ID . $resourceNo);
     
    366363        'post_content' => $post_content,
    367364        'post_status' => $post_status,
    368         'post_date' => date('Y-m-d H:i:s', $post_date),
    369365        'post_author' => $post_user,
    370366        'post_type' => 'post',
Note: See TracChangeset for help on using the changeset viewer.