Documentation error?
-
Topic
-
I think there might be an error in the sample code at http://dev.themeblvd.com/tutorial/child-theme-setup/
In this piece of code:
function my_header_logo(){
// show my logo …
}
remove_action( ‘themeblvd_header_logo’, ‘themeblvd_header_logo_default’ );
add_action( ‘themeblvd_header_logo’, ‘themeblvd_header_logo_default’ );Shouldn’t it be:
function my_header_logo(){
// show my logo …
}
remove_action( ‘themeblvd_header_logo’, ‘themeblvd_header_logo_default’ );
add_action( ‘themeblvd_header_logo’, ‘my_header_logo’ );?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.