Plugin nebyl testován na 3 nejnovějších verzích WordPressu. Nemusí už být tedy podporován a u novějších verzí WordPressu může mít problémy s kompatibilitou a může být nestabilní.

Taro Clockwork Post

Popis

You can enter expiration date on edit screen.
This plugin runs cron every minute to search expired posts and make them private.

NOTICE This plugin requires PHP 5.6 and over.

Instalace

  1. Upload the plugin files to the /wp-content/plugins/taro-clockwork-post directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the ‚Plugins‘ screen in WordPress.
  3. Go to Setting > Reading and choose post type to expiration ready.

Nejčastější dotazy

How to avoid post status to be private

Private is the default post status but if you want another case, use filter hook for that.

// Filter status if post type is `product`
add_filter( 'tscp_expired_status', function( $status, $post ) {
   if ( 'product' == $post->post_type ) {
       $status = 'no-stock';
   }
   return $status;
}, 10, 2 );

If status is false, this plugin doesn’t change post status.
In such situation, you might need adding any custom field to post.
Use another action which will occur just after tscp_expired_status.

// do something just after post status is/isn't changed.
add_action( 'tscp_post_expired', function( $post ) {
   // Post is still publish,
   // But add some custom fields
   update_post_meta( $post->ID, '_not_in_front_page', true );
} );

Change frequency of expiration check

If you are low-resource environment, you might need low frequency.
For example, assume that your site allows posts to be expired within 10 min.
Use hook to delay interval.

add_filter( 'tscp_cron_interval', function() {
  // Change interval from 60 sec to 600 sec.
  return 600;
} );

Recenze

Pro tento plugin nejsou žádné recenze.

Autoři

Taro Clockwork Post je otevřený software. Následující lidé přispěli k vývoji tohoto pluginu.

Spolupracovníci

Plugin „Taro Clockwork Post“ byl přeložen do 1 jazyku. Děkujeme všem překladatelům za jejich pomoc.

Přeložte “Taro Clockwork Post” do svého jazyka.

Zajímá vás vývoj?

Prohledejte kód, podívejte se do SVN repozitáře, nebo se přihlaste k odběru protokolu vývoje pomocí RSS.

Přehled změn

1.2.0

  • Bump required PHP version.
  • Fix editor UI.

1.1.0

  • Support block editor.

1.0.1

  • Fix broken link on edit screen.
  • Add unit test for expiration process.

1.0.0

  • Initial release.