How to add article category management function to WordPress plug-in
Sep 05, 2023 am 08:43 AMHow to add article category management function to WordPress plug-in
WordPress is one of the most widely used content management systems at present, and it provides a wealth of plug-ins to extend its functions. . If you are a plug-in developer, you may encounter the need to add article category management functions to your plug-in. This article will introduce you to how to add article category management functions to WordPress plugins, and provide code examples for reference.
- Create a category
First, we need to create a new article category for the plug-in. This can be accomplished using theregister_taxonomy()
function. The following is a sample code:
// 在插件的主活動(dòng)文件中添加以下代碼 function custom_plugin_taxonomy() { $labels = array( 'name' => _x( '插件分類', 'taxonomy general name', 'textdomain' ), 'singular_name' => _x( '插件分類', 'taxonomy singular name', 'textdomain' ), 'search_items' => __( '搜索分類', 'textdomain' ), 'all_items' => __( '所有分類', 'textdomain' ), 'parent_item' => __( '父級(jí)分類', 'textdomain' ), 'parent_item_colon' => __( '父級(jí)分類:', 'textdomain' ), 'edit_item' => __( '編輯分類', 'textdomain' ), 'update_item' => __( '更新分類', 'textdomain' ), 'add_new_item' => __( '添加新分類', 'textdomain' ), 'new_item_name' => __( '新分類名稱', 'textdomain' ), 'menu_name' => __( '分類', 'textdomain' ), ); $args = array( 'hierarchical' => true, 'labels' => $labels, 'show_ui' => true, 'show_admin_column' => true, 'query_var' => true, 'rewrite' => array( 'slug' => 'plugin_category' ), ); register_taxonomy( 'plugin_category', array( 'post' ), $args ); } add_action( 'init', 'custom_plugin_taxonomy', 0 );
In the above code, we use the register_taxonomy()
function to create a new article category named plugin_category
. This category has some basic properties such as name, search text, and editing operations.
- Enable category management for the plug-in
Now, we need to add an interface to the plug-in so that users can select and manage categories in the article editing page. We can use the hook functionadd_meta_box()
to achieve this. The following is a sample code:
// 在插件的主活動(dòng)文件中添加以下代碼 function custom_plugin_taxonomy_meta_box() { add_meta_box( 'plugin_category', __( '插件分類', 'textdomain' ), 'custom_plugin_taxonomy_meta_box_callback', 'post', 'side', 'default' ); } add_action( 'add_meta_boxes', 'custom_plugin_taxonomy_meta_box' ); function custom_plugin_taxonomy_meta_box_callback( $post ) { wp_nonce_field( 'custom_plugin_taxonomy_meta_box', 'custom_plugin_taxonomy_meta_box_nonce' ); $terms = get_terms( array( 'taxonomy' => 'plugin_category', 'hide_empty' => false, ) ); if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) { echo '<select name="plugin_category">'; foreach ( $terms as $term ) { echo '<option value="' . $term->term_id . '">' . $term->name . '</option>'; } echo '</select>'; } }
In the above code, we use the add_meta_box()
function to add a new meta box for displaying the category selection box. In the custom_plugin_taxonomy_meta_box_callback()
function, we use the get_terms()
function to get all available categories and output a drop-down menu for the user to choose.
- Saving and updating categories
Finally, we need to add code to save and update the selected category. We can use the hook functionsave_post
to handle this task. The following is a sample code:
// 在插件的主活動(dòng)文件中添加以下代碼 function custom_plugin_taxonomy_save_meta_box_data( $post_id ) { if ( ! isset( $_POST['plugin_category'] ) ) { return; } if ( ! wp_verify_nonce( $_POST['custom_plugin_taxonomy_meta_box_nonce'], 'custom_plugin_taxonomy_meta_box' ) ) { return; } if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } if ( ! current_user_can( 'edit_post', $post_id ) ) { return; } $term_id = intval( $_POST['plugin_category'] ); wp_set_post_terms( $post_id, array( $term_id ), 'plugin_category' ); } add_action( 'save_post', 'custom_plugin_taxonomy_save_meta_box_data' );
In the above code, we check whether the category selection box is selected and verify the submitted form data using the wp_verify_nonce()
function. Then, we use the wp_set_post_terms()
function to save the selected category to the current article.
Through the above steps, you have successfully added the article category management function to your WordPress plug-in. Users can now select and manage categories in the article editing page for a better content management experience.
Summary
This article introduces how to add article category management functions to the WordPress plug-in and provides relevant code examples. You can add this by using the register_taxonomy()
function to create a taxonomy, the add_meta_box()
function to add interfaces, and the save_post
hook function to save and update the taxonomy. Features are quickly integrated into their own plug-ins. I hope this article is helpful to you, and I wish you can write more powerful WordPress plug-ins!
The above is the detailed content of How to add article category management function to WordPress plug-in. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

There are four ways to adjust the WordPress article list: use theme options, use plugins (such as Post Types Order, WP Post List, Boxy Stuff), use code (add settings in the functions.php file), or modify the WordPress database directly.

Web development design is a promising career field. However, this industry also faces many challenges. As more businesses and brands turn to the online marketplace, web developers have the opportunity to demonstrate their skills and succeed in their careers. However, as demand for web development continues to grow, the number of developers is also increasing, resulting in increasingly fierce competition. But it’s exciting that if you have the talent and will, you can always find new ways to create unique designs and ideas. As a web developer, you may need to keep looking for new tools and resources. These new tools and resources not only make your job more convenient, but also improve the quality of your work, thus helping you win more business and customers. The trends of web development are constantly changing.

Importing WordPress source code requires the following steps: Create a sub-theme for theme modification. Import the source code and overwrite the files in the sub-topic. Activate the sub-theme to make it effective. Test the changes to make sure everything works.

To build a website using WordPress hosting, you need to: select a reliable hosting provider. Buy a domain name. Set up a WordPress hosting account. Select a topic. Add pages and articles. Install the plug-in. Customize your website. Publish your website.

Do you want to connect your website to Yandex Webmaster Tools? Webmaster tools such as Google Search Console, Bing and Yandex can help you optimize your website, monitor traffic, manage robots.txt, check for website errors, and more. In this article, we will share how to add your WordPress website to the Yandex Webmaster Tool to monitor your search engine traffic. What is Yandex? Yandex is a popular search engine based in Russia, similar to Google and Bing. You can excel in Yandex

Do you want to know how to use cookies on your WordPress website? Cookies are useful tools for storing temporary information in users’ browsers. You can use this information to enhance the user experience through personalization and behavioral targeting. In this ultimate guide, we will show you how to set, get, and delete WordPresscookies like a professional. Note: This is an advanced tutorial. It requires you to be proficient in HTML, CSS, WordPress websites and PHP. What are cookies? Cookies are created and stored when users visit websites.

To create an account on WordPress, simply visit its website, select the registration option, fill in the registration form, and verify your email address. Other ways to register include using a Google account or Apple ID. The benefits of signing up include creating a website, gaining features, joining the community, and gaining support.

Do you need to fix HTTP image upload errors in WordPress? This error can be particularly frustrating when you create content in WordPress. This usually happens when you upload images or other files to your CMS using the built-in WordPress media library. In this article, we will show you how to easily fix HTTP image upload errors in WordPress. What is the reason for HTTP errors during WordPress media uploading? When you try to upload files to Wo using WordPress media uploader
