Support » Plugin: FeedWordPress » Option to disable empty title "normalization"

  • Hi! I’m using latest version of FWP and if the feed entry has an empty title, function normalize_post() from syndicatedpost.class.php replaces it with “Feedname POST DATE”

    if (strlen($out[‘post_title’])==0) :
    //…
    $out[‘post_title’] = $source_title
    .’ ‘.gmdate(‘Y-m-d H:i:s’, $this->published() + $offset);
    // FIXME: Option for what to fill a blank title with…

    I’d like to keep post titles empty, as this is perfectly allowed by WordPress.

    Can you please add either an option to disable this replacement, or (as a simpler and more generic solution) some kind of hook to enhance/disable the optional parts of normalization?

    http://wordpress.org/extend/plugins/feedwordpress/

  • The topic ‘Option to disable empty title "normalization"’ is closed to new replies.