Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- global $pagenow;
- if ( $pagenow === 'post.php' || $pagenow === 'post-new.php' ) {
- add_action( 'save_post', 'add_jnews_primary_category', 99 );
- add_action( 'edit_post', 'add_jnews_primary_category', 99 );
- }
- function add_jnews_primary_category( $post_id ) {
- $cat_id = 5; /* change this */
- update_post_meta( $post_id, 'jnews_primary_category', array( 'id' => (int) $cat_id ) );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement