just a punk |
01-06-2012 10:43 AM |
Quote:
Originally Posted by nico-t
(Post 18544264)
im pulling posts that have 1 word titles. Is there a way i can add random prefixes and suffixes to the title? Just like the post header & footer works.
|
Sure, everything is possible with CyberSEO! Just put the following code into the "PHP code <?php .. ?>" box (on the feed settings page):
Code:
$px = array('prefix1', 'prefix2', 'prefix3', 'prefix4', 'prefix5');
$sx = array('suffix1', 'suffix2', 'suffix3', 'suffix4', 'suffix5');
$post['post_title'] = $px[rand(0, count($px) - 1)] . ' ' . $post['post_title'] . ' ' . $sx[rand(0, count($sx) - 1)];
Quote:
Originally Posted by nico-t
(Post 18674402)
still looking for a way to do this & forgot i already asked this, so here's a bump
|
Sorry I've missed this thread.
Quote:
Originally Posted by Inter-Sex
(Post 18674475)
His support forum seems to be nice active. You might give that way a try.
|
Yes Sir!
Quote:
Originally Posted by newB
(Post 18674493)
There was a free host that used CyberSyn and it rocked, but they have since gone to shit. Are you aware of any free hosts that offer it as an installed plugin?
|
The only one I know is rbbloggers.com, however I believe there are other free blog hosts that use CyberSyn, because it's freeware and open source plugin (GPL) which can be downloaded directly from the official WordPress site: http://wordpress.org/extend/plugins/cybersyn/
|