Skip to main content

vc_page-welcome-slugs-list

Filters the list of tab slugs and labels displayed on the WPBakery Welcome screen. Use this to add, remove, or modify tabs on the welcome page.

Parameters

ParameterTypeDescription
$tabsarrayAssociative array of tab slugs mapped to their display labels. Default tabs include vc-welcome, vc-faq, and vc-resources.

Usage

<?php
add_filter( 'vc_page-welcome-slugs-list', 'my_modify_welcome_tabs', 10, 1 );

function my_modify_welcome_tabs( $tabs ) {
// Add a custom tab to the welcome screen
$tabs['vc-my-custom-tab'] = esc_html__( 'My Custom Tab', 'my-theme' );
return $tabs;
}

Source

File: include/autoload/vc-pages/welcome-screen.php