Require Post Category

Require Post Category

توسط

Tired of uncategorized posts? Use this simple plugin to require users to choose a post category before updating or publishing a post. By default this only applies to normal posts. If you wish to require a category/taxonomy for a custom post type see the FAQ for filter hook usage examples.

Translators

If you have created your own language pack, or have an update of an existing one, you can send the PO and MO files to me so that I can bundle it into the plugin. Download the latest POT file.

From your WordPress dashboard

  1. Visit ‘Plugins > Add New’
  2. Search for ‘require post category’ and click the Install button
  3. Activate Require Post Category from your Plugins page.

From WordPress.org

  1. Download Require Post Category.
  2. Upload the ‘require-post-category’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…)
  3. Activate Require Post Category from your Plugins page.

سوالات متداول

Are there any settings I can adjust?

Nope, just install and activate, that’s it!

How do I use this for custom post types and/or custom taxonomies?

Use the rpc_post_types filter hook in your theme’s functions.php or a must-use plugin.

Usage examples:

function custom_rpc_post_types( $post_types ) {
    // Add a key to the $post_types array for each post type and list the slugs of the taxonomies you wish to require

    // Simplest usage
    $post_types['book'] = array( 'genre' );

    // Multiple taxonomies
    $post_types['recipe'] = array( 'cookbook_category', 'geographic_origin', 'flavor_tags' );

    // Set your own alert message for each taxonomy, or let the plugin generate the alert message
    $post_types['inventory'] = array(
        // Let the plugin generate a relevant alert message
        'manufacturer',
        // Or specify a custom alert message
        'inventory_category' => array(
            'message' => "Please choose a category for this fine inventory item."
        )
    );

    // Always return $post_types after your modifications
    return $post_types;
}

add_filter( 'rpc_post_types', 'custom_rpc_post_types' );

The default $post_types contains the following:

$post_types['post'] = array(
    'category' => array(
        'message' => 'Please select a category before publishing this post.'
    )
);

This maintains the plugin’s original functionality. However, you can remove this functionality with unset($post_types['post']); or by redefining $post_types in your hook function.

You’ve added code to require a custom taxonomy but can’t get it to work in the Gutenberg editor?

One reason may be that your custom taxonomy does not have the show_in_rest argument enabled. Without it enabled the Gutenberg editor cannot access it.

Have a question that is not addressed here?

Visit this plugin’s WordPress support forum at https://wordpress.org/support/plugin/require-post-category

×
نظری برای این آیتم موجود نیست.
0 0 رای ها
امتیازدهی
اشتراک در
اطلاع از
0 نظرات
قدیمی‌ترین
تازه‌ترین بیشترین رأی
بازخورد (Feedback) های اینلاین
مشاهده همه دیدگاه ها
نسخه حجم فایل SHA256 تغییرات دانلود
2.1 70 کیلوبایت -
دانلود
×
★★★★★
★★★★★
4.9 /5 (11 نظر)

قیمت:

رایگان

نگارش

2.1

آخرین انتشار

14 اردیبهشت 1405

آخرین بروزرسانی

1 ماه پیش

نصب های فعال

1,000+

نگارش وردپرس

وردپرس 5.5+

تست شده از نسخه

وردپرس 6.5.8

نگارش PHP

-

نسخه ها

1 نسخه