Advertisement
deadhead1971

PHP function to add language tag to Welsh posts (to help Mailpoet filter)

Apr 14th, 2021
735
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_action('save_post', 'add_langCYTag', 200, 2);
  2. function add_langCYTag ($post_id, $post) {
  3.     $my_current_lang = apply_filters( 'wpml_current_language', NULL);
  4.     if ( $my_current_lang !== 'cy' )
  5.         return;
  6.     $post = get_post( $post_id );
  7.     wp_set_post_tags($post_id, $my_current_lang, true);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement