GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Tech Any Wordpress Plugins For Autopost - Re-post? (https://gfy.com/showthread.php?t=1367666)

blackchariotnetwork 08-18-2023 09:36 PM

Any Wordpress Plugins For Autopost - Re-post?
 
Hey guys,

I am looking for a plugin that is easy to set up and re-post older content / autopost.

If you could help point me in the right way it would be much appreciated.

Thank you :thumbsup

fris 08-19-2023 11:11 AM

there is a plugin republish old posts on wordpress.org

have a look at that

brassmonkey 08-19-2023 01:38 PM

he knows :winkwink:

blackchariotnetwork 08-20-2023 05:28 AM

thanks guys i appreciate it.

just a punk 08-23-2023 04:21 AM

However, there is one thing that no WordPress.org plugin can do. Imagine a station where you frequently import posts from a feed (say, a livecam feed) into WordPress posts or pages, and you want all new posts in the feed to appear at the top of your index pages. For example, the plugin pulls a feed where 7 posts are currently active livecams, so you want them at the top of your main page, but they already exist on your site as old posts imported a week ago. So the plugin has to delete those old posts and re-import them as new ones with new descriptions/statuses and screenshots because they have most likely been updated recently.

The plugin in my signature allows you to do this.

https://www.cyberseo.net/content-syn...existing-posts

fris 08-23-2023 08:58 AM

Quote:

Originally Posted by blackchariotnetwork (Post 23167631)
thanks guys i appreciate it.

not automatic, but i have my own plugin, if im lazy and want to push a post to the front, i can goto the post list and click promote and it will add it as it was just added.

if thats something you want i can send it.

Tube Ace 08-23-2023 11:19 AM

Quote:

Originally Posted by CyberSEO (Post 23168676)
However, there is one thing that no WordPress.org plugin can do. Imagine a station where you frequently import posts from a feed (say, a livecam feed) into WordPress posts or pages, and you want all new posts in the feed to appear at the top of your index pages. For example, the plugin pulls a feed where 7 posts are currently active livecams, so you want them at the top of your main page, but they already exist on your site as old posts imported a week ago. So the plugin has to delete those old posts and re-import them as new ones with new descriptions/statuses and screenshots because they have most likely been updated recently.

The plugin in my signature allows you to do this.

Free code:

https://themesdna.com/blog/order-pos...ate-wordpress/

Add to theme's functions.php or use WP Code plugin to insert custom code:

Code:

function themesdna_sort_homepage_posts_by_modified_date( $query ) {
    if( $query->is_main_query() && ! is_admin() && $query->is_home() ) {
        $query->set( 'orderby', 'modified' );
        $query->set( 'order', 'DESC' );
    }
}
add_action( 'pre_get_posts', 'themesdna_sort_homepage_posts_by_modified_date' );

More options:

https://webhostinghero.org/wordpress...modified-date/

HowlingWulf 08-23-2023 11:45 AM

Look at WP Auto Poster.

Sharon1974 08-23-2023 11:01 PM

I use Auto Post Scheduler :thumbsup


All times are GMT -7. The time now is 09:23 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123