Forum Replies Created
Viewing 17 posts - 1 through 17 (of 17 total)
-
Author
-
SatnamlivParticipant
<?php
/**
* @package WordPress
* @subpackage Sweetdate
* @author SeventhQueen <themesupport@seventhqueen.com>
* @since Sweetdate 1.0
*//**
* Sweetdate Child Theme Functions
* Add extra code or replace existing functions
*/
// TAB – ABOUT ME
add_action(‘after_setup_theme’,’kleo_my_custom_tabs’);
function kleo_my_custom_tabs()
{
global $bp_tabs;
$bp_tabs = array();$bp_tabs[‘base’] = array(
‘type’ => ‘regular’,
‘name’ => __(‘About me’, ‘kleo_framework’),
‘group’ => ‘Pagrindinis’,
‘class’ => ‘regulartab’
);
}
?>
it works for me -
AuthorPosts
Viewing 17 posts - 1 through 17 (of 17 total)