[UPDATED METHOD] [EASY] My Autoblog - Social Media - Passive Income - System

What an amazing walkthrough you got there, great job mate. +++
I'm having hard time download FWP+ since when i go to site its just blank.
Maybe someone here could upload it here?
 
I have found a simple solution for only posting images - it's a little hacky, but just replace your the_content(); php call in the editor with this:

Code:
<?php   
        
    $content = get_the_content(); 
    preg_match_all('/<img[^>]+>/i', $content, $result);
    $imgs = $result[0];
    $content = "";
    foreach($imgs as $img){
        $content .= $img . "<br />";
    }
    echo $content;
?>

This regex matches all the img tags in the post and only displays them, and if there's more then one, it'll put them all in under one another. Or should... I haven't tested it yet for multiple image posts.

Hi, I am a total noob, where exactly are you placing this code?

Many Thanks
 
Hi, I am a total noob, where exactly are you placing this code?

Many Thanks

Go into your theme folder (usually public_html/yoursite/wp-content/themes/yourtheme)

Look for single.php and open it

Look for this line:

Code:
<?php the_content(); ?>

and replace it with this:

Code:
<?php             
    $content = get_the_content(); 
    preg_match_all('/<img[^>]+>/i', $content, $result);
    $imgs = $result[0];
    $content = "";
    foreach($imgs as $img){
        $content .= $img . "<br />";
    }
    echo $content;
?>

Its also possible that if your theme doesn't click through to the images the content section might be in your index.php so the same steps as above just look for index.php instead of single.php and follow the same steps.
 


Since this thread has been alive for quite some time now, I've been wondering:




Did anybody already get some mentionable results and would care to share their stats? Would be really interesting to know.
 


since this thread has been alive for quite some time now, i've been wondering:




did anybody already get some mentionable results and would care to share their stats? Would be really interesting to know.


statsjuic.jpgstatspl.jpgstatscrack.jpg


here are my earnings.i have hard time with this but i see its growing.
 
Greetings,

Thank you for the guide. Can anyone supply the FWD Limit posts by date plugin? Their website does not work
 
Greetings,

Thank you for the guide. Can anyone supply the FWD Limit posts by date plugin? Their website does not work

You should be able to get it from here

Code:
http://projects.radgeek.com/wp-content/download/fwp-limit-posts-by-date.2010.0929.zip

VT
Code:
https://www.virustotal.com/en/url/a32c077af4d362e6e7e4d33c8700eba7f0ffe3c0c208e12f527da44351ad53c6/analysis/1386636369/
 
Anyone bought PRTrafficbooster for this? Any other tools that are worthy of buying for this method?

All in all, is it still worth it making 20-30 blogs on Tumblr and monetize with subdomains?
 
Anyone bought PRTrafficbooster for this? Any other tools that are worthy of buying for this method?

All in all, is it still worth it making 20-30 blogs on Tumblr and monetize with subdomains?

I did.And yes,it's worth every penny you spent. It's the best tool for such a low price
 
Thanks for this post very informative.

I personally would like to use this method but without monetization, starting from an already set up blog.

What I need is to be able to fetch all the content from these other blogs (tumblr, say) and repost them on my Twitter and Facebook pages.

How would I go about doing this, using your method, in order to avoid posting on my currently set up blog, and just to the social channels?

Many thanks!

Gogsi
 
Back
Top