Close

My Courses

My Courses

You are not logged in. Click here to login.

Completa el formulario a continuación y te contestaremos lo antes posible.

Completa el formulari a continuació i et contestarem com més aviat millor.

function set_label_tag() { $title = get_the_title(); return !empty($title) ? wp_kses_post($title) : esc_html__('Página sin título', 'text-domain'); } add_shortcode('custom_label_tag', 'set_label_tag'); add_filter('wpforms_process_field_value', function($value, $field, $entry) { if (!is_object($field) || !property_exists($field, 'type') || empty(trim($value))) { return wp_kses_post($value); } return has_shortcode($value, 'custom_label_tag') ? do_shortcode($value) : wp_kses_post($value); }, 10, 3); function custom_wpform_shortcode() { $form_id = 30118; return do_shortcode('[wpforms id="' . esc_attr($form_id) . '"]'); } add_shortcode('custom_wpform', 'custom_wpform_shortcode');