I am very new to WP and Hybrid and having some problems. I installed wp and hybrid theme.
now the problem is i am making child theme and just confused using wp functions vs hybrid functions in theme files. which functions to use?
wp_nav_menu() and hybrid_page_nav() returning same result.
and other problem: in my wp-content/theme/ folder i have hybrid and mycustom folders and in mycustom folder i have style.css and functions.php file.
i want to add some text in header so should i create header.php in mycustom folder and add there or define function in functions file and add it like
function myheader(){
echo 'My header';
}
add_action('hybrid_header','myheader');
i am really confused what to do?
please give me suggestion to get started.