Viewing 3 replies - 1 through 3 (of 3 total)
  • Simon W

    (@simwyck)

    +1 for this one. I need it too but I don’t find where it’s specified in the files… for now.

    Simon

    Thread Starter channelcast

    (@channelcast)

    Simon, if you figure it out, please let me know ??

    Simon W

    (@simwyck)

    Hi channelcast,

    I think your problem’s due to the fact that the plugin looks for the date format you’ve defined for WordPress (https://www.yourdomain.com/wp-admin/options-general.php).

    So the easiest thing to do would be to change it. But it’ll affect all your site.

    As for me, I wanted a different format for the title of my feed digest (I wanted the date to be at the international format: dd/mm/yyyy).

    So I came with this workaround that’s fine for me :
    – Edit the rss-digest.php
    – Look for line 255 :
    l.255 $post_title .= " " . date(get_option('date_format', 'F j, Y'));
    – Modidy it with your desired format. E.g.:
    l.255 $post_title .= " " . date('d/m/Y');
    => You might want to get help for date formats at https://php.net/manual/fr/function.date.php

    I hope, it’ll help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: RSS Digest] Format of date in title’ is closed to new replies.