I was thinking is there one wher you can enter all your galleries (ie url.description.titel) and it turns them into a post, say 1 post a day.
does such a wp plugin exsist?
Collapse
X
-
-
-
Fris = the WP go to guy! Thanks for saving this thread, my man
Comment
-
Thanks Fris!
Wanna Make Huge Profits?
Listen to me carefully: I will not tell you how to make money in this business and I won't give you a Fucking Link to a sponsor so I can make 5% of nothing....get yourself a Fucking Plan, stick to it, don't be a Lazy Bitch, and you will make money!
Comment
-
-
CyberSEO can do the same thing but it uses the FHG RSS feeds instead of text dumps
Obey the CowgodComment
-
Comment
-
Yea I have the unlimited version and use it, awesome tool
But many sponsors doesn't have RSS feeds and almost all have a ton of FHGs you can export. Maybe you need to add a new feature for v.7?
But.... I pulled out...Comment
-
You got me wrong. Almost ALL sponsors (e.g. NATS ones) provide FHG RSS feeds for TGP's (e.g.: http://nats.ddfcash.com/ddfrss_22_1_...17_100_c_p.rss). With CyberSEO you can use these feeds to automatically generate gallery-style posts on your blogs. I.e. description and thumbnails linked to the large images.Last edited by just a punk; 04-10-2012, 01:31 AM.Obey the CowgodComment
-
I know you tried and others will appreciate it but this one isn't free and it is of no use to DVTimes
Sharleen Spiteri - 1989 - In The AssComment
-
Comment
-
1) CyberSEO can import galleries from FHG (TGP) RSS feeds (see example URL above).
2) If you want to import from a text dump, you can easily convert it into the RSS feed using this simple PHP script:
Just upload it to your host (e.g. mysite.com) as dump2xml.php an use it as follows:Code:<?php header ( 'Content-type: text/xml' ); if (isset ( $_GET ["dump"] )) { $dump = file ( $_GET ["dump"] ); $time = time (); echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"; echo "<rss version=\"2.0\">\n"; echo "<channel>\n"; echo "<title>My Feed</title>\n"; foreach ( $dump as $item ) { list ( $url, $desc, $title ) = explode ( "|", trim ( $item ) ); $desc .= "<br /><a href=\"" . $url . "\">Click here for more...</a>"; echo " <item>\n"; echo " <title>" . $title . "</title>\n"; echo " <link>" . $url . "</link>\n"; echo " <guid>" . $url . "</guid>\n"; echo " <pubDate>" . date ( "D, d M Y H:i:s O", $time ) . "</pubDate>\n"; echo " <description><![CDATA[" . $desc . "]]></description>\n"; echo " </item>\n"; $time -= 86400; } echo "</channel>\n"; echo "</rss>\n"; } ?>
www.mysite.com/dump2xml.php?dump=<dump>
Where <dump> is an URL of your text dump in the format specified by DVTimes:
url|description|title
This will generate you an RSS feed which can be syndicated by the CyberSEO plugin.
What could be even easier?
Last edited by just a punk; 04-10-2012, 04:27 AM.Obey the CowgodComment
-
-
Comment
-
-



Comment