Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
add_filter( 'content_save_pre', 'my_func' ); function my_func( $content ) { $post_id = get_the_ID(); update_post_meta( $post_id, 'my_custom_field', 'foo bar baz' ); return $content; }
my_custom_field
save_post
add_action( 'save_post', 'skill_save_post' ); if ( !function_exists( 'skill_save_post' ) ) { function skill_save_post( $post_id ) { update_post_meta( $post_id, 'my_custom_field', 'my_custom_value' ); } }