[Plugin: Custom About Author] Debug Errors > Fixed it for you
-
A client is using your plugin and it causing php warnings when in debug mode. If you care, this is how we fixed it:
incustom-about-author.phpchange:wp_enqueue_style('cab_style', $caa_plugin_dir_path.'/cab-style.css');to:
function cabStyle() { global $caa_plugin_dir_path; wp_enqueue_style('cab_style', $caa_plugin_dir_path.'/cab-style.css'); } add_action('wp_enqueue_scripts', 'cabStyle');More info at: http://codex.ww.wp.xz.cn/Function_Reference/wp_enqueue_style
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘[Plugin: Custom About Author] Debug Errors > Fixed it for you’ is closed to new replies.