• Resolved albie2011

    (@albie2011)


    Very powerful plugin, thank you. I was wondering if there was a way once a post is put into Draft for it also to have at the bottom not just the Source: [Title] but Source: [Title] via [SourceName]

    This way it is more readily apparent what the Source is in the post itself (without clicking through). Bonus points if Source: can be changed to Read: somehow.

    Again, great work, thank you for this outstanding contribution – the plugin really is great.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Boone Gorges

    (@boonebgorges)

    Hello, and thanks for the nice comments!

    I’ve opened a GitHub ticket to track your enhancement ideas. Neither is straightforward, but it’s something we can consider in an upcoming release as resources allow. https://github.com/PressForward/pressforward/issues/1131

    In the meantime, it’s already possible to change the word ‘Source’ using a plugin:

    add_filter(
      'pf_source_statement',
      function( $args ) {
        $args['format'] = 'Read: %s';
        return $args;
      }
    );

    This will change ‘Source:’ to ‘Read:’.

    Thread Starter albie2011

    (@albie2011)

    Thanks @boonebgorges I appreciate the prompt reply. This is really a cool plugin!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add Feed Name After Source When Publishing?’ is closed to new replies.