Quote:
Originally Posted by CEO254
Is there any way I can add "#Example" to the tweets?
|
I just went in and added a variable like this:
$posttitle = '#Example';
Right above this line:
$tweet = '';
Then, later in the code, I took this line:
$tweet .= $newpost['title'] . ' - ' . $shortURL;
And changed it to this:
$tweet .= $newpost['title'] . ' - ' . $shortURL . ' - ' . $posttitle;
You could replace #Example with any text.. It will show up at the end of the twitter message.