WordPress
2
Вклад в тег
add_filter( 'wpcf7_form_elements', 'do_shortcode' );
function hello_world_cf7_func() {
return "Привет! Я шоркод для Contact Form 7!";
}
add_shortcode('hello_world', 'hello_world_cf7_func');
//----------------------------------------------------------------
add_filter('wpcf7_mail_components', 'do_shortcode_mail', 10, 3);
function do_shortcode_mail( $components, $contactForm, $mailComponent ){
if( isset($components['body']) ){
$components['body'] = do_shortcode($components['body']);
}
return $components;
}
add_action( 'woocommerce_created_customer', 'my_user_registration' );
function my_user_registration($uid) {
wp_update_user( array( 'ID' => $uid, 'role' => 'name_role' ) );
}