ryan76nz
Member
Posted 11 months ago #
This plugin posts in the format:
New blog post: Post title http://your.url
I'm looking for a way to append some text to it like this:
New blog post: Post title http://your.url My custom text
I've found this for changing the prefix, but is there a way to add a suffix?
$this->tweet_prefix = 'New blog post';
Thanks for any help.
txdomer
Member
Posted 9 months ago #
I'd love to know the answer to this as well - I've searched high and low to figure out how to edit the code to do this.
aeneas07
Member
Posted 4 months ago #
change these lines to make the prefix a suffix
$this->tweet_prefix = 'you custom text';
$this->tweet_format = '%s %s '.$this->tweet_prefix;
you would need to make some more than minor changes to ADD a suffix in addition to the prefix