Wordpress : scheduled posting

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Deputy Chief Command
    Deputy Chief Command
    • Nov 2005
    • 4482

    #1

    Wordpress : scheduled posting

    Lets say I have a wordpress blog with 500 quality posts. Now I don't want to post any new stuff anymore I just want to repost the 500 I have already.

    How would I go about this? I would want to daily have 4 or 5 random updates at a set time. Is this possible? IF so how ? Am kind of new to wordpress
  • johnny_d
    Confirmed User
    • Sep 2012
    • 827

    #2
    It doesnt look like there is a plugin for something like this, so you need to do it by hand. Go to Dashboard -> Posts -> Quick Edit, and change the status of some of the posts from Published to Draft. Then you can Edit the drafts, and schedule them to get published in the future.

    Comment

    • astronaut23
      Confirmed User
      • Jan 2012
      • 310

      #3
      I would advise against posting the same content again because you will get a duplicate content penalty from Google.

      I know of a way how you can randomize the post order of the posts you already published, if that`s of any help. That way, when people visit your site, they will always see different posts on the first page, so it would look like you have new posts.

      To do this, you need to edit the index.php file and find

      Code:
      <?php if (have_posts()) : ?>
      and just below that line, paste this

      Code:
      <?php query_posts($query_string . '&orderby=rand') ?>
      If I`m not mistaken, the full thing should look like this:

      Code:
      <?php if (have_posts()) : ?>
      <?php query_posts($query_string . '&orderby=rand') ?>
      	<?php while (have_posts()) : the_post(); ?>
      Or something like that, depending on theme. Also, remember to backup your index.php file first, if anything goes wrong.

      Comment

      • Simon
        Confirmed User
        • Aug 2003
        • 189

        #4
        Take a look at these...

        http://wordpress.org/extend/plugins/...-newest-redux/

        http://ryowebsite.com/wp-plugins/old2new/

        http://wordpress.org/extend/plugins/old-post-promoter/

        HTH


        P.S. If anyone knows how to make one of these select an older post to promote which is "older than ___ days but not older than ___ days" that would be a nice option to have. Right now one of them will choose based on "older than" only and the others will simply choose the oldest post available.
        See most arguments on GFY explained in about 5 seconds
        email: simon <at> IndustryInc dot com | icq: 269~043~019
        "If you want a happy ending, that depends, of course, on where you stop your story."

        Comment

        • Tom.K
          Confirmed User
          • May 2011
          • 422

          #5
          try also OPS Old Post Spinner wp plugin
          Promote LustReality.com - Exclusive VR content / email me

          *** Non-Exclusive content package on sale - contact me for info ***

          Comment

          • Tom.K
            Confirmed User
            • May 2011
            • 422

            #6
            it actually duplicates a post, but is making them unique via spinning
            Promote LustReality.com - Exclusive VR content / email me

            *** Non-Exclusive content package on sale - contact me for info ***

            Comment

            Working...