Hello,
I am getting this strange error that just started showing up with my theme
Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'genesis_footer_creds_text' was given in ... wp-includes/plugin.php on line 395
I am calling the script in my theme:
PHP Code:
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
remove_action( 'genesis_footer', 'genesis_footer_creds_text' );
add_action( 'genesis_footer', 'genesis_do_subnav' );
add_action( 'genesis_footer', 'genesis_footer_creds_text' );
If I comment out the last line to add back the genesis_footer_creds_text, it breaks. Not sure why this doesn't work as it seemed to work before.