$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>categories - How to automatically apply a category based on the post title?|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

categories - How to automatically apply a category based on the post title?

matteradmin9PV0评论

I have a Wordpress site talking about laptop review. In every post, I always add a category name on the title.

For example "ASUS ZenBook UX480FD Review" is categorized as "ASUS".

However, I need to add the category manually. For efficiency purpose, I want my site to automatically apply category based on the post title (especially the first word of the title).

Is anybody knows the plugin or code to do so?

Thanks!

note: the category slug already created

I have a Wordpress site talking about laptop review. In every post, I always add a category name on the title.

For example "ASUS ZenBook UX480FD Review" is categorized as "ASUS".

However, I need to add the category manually. For efficiency purpose, I want my site to automatically apply category based on the post title (especially the first word of the title).

Is anybody knows the plugin or code to do so?

Thanks!

note: the category slug already created

Share Improve this question asked Dec 29, 2018 at 9:32 Christian Dwi WijayaChristian Dwi Wijaya 113 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You could try this. I havn't really tested it, so I'm not sure it works - might require some small tweaks aswell.

function add_category_based_on_title( $post_id ) {

    // title
    $title = get_the_title( $post_id );

    // get first part of title
    $substr = explode( " ", $title )[0];

    // get category id
    $category_id = get_cat_ID( $substr ); 

    // check category
    if ( ! empty( $category_id ) ) ) {

        // set category
        wp_set_post_categories( $post_id, [ $category_id ], true )

    }

}
add_action( 'save_post', 'add_category_based_on_title' );

References:

https://codex.wordpress/Function_Reference/wp_set_post_categories https://codex.wordpress/Function_Reference/get_cat_ID https://developer.wordpress/reference/functions/get_the_title/

Post a comment

comment list (0)

  1. No comments so far