how to prevent error on wp_register_style was called incorrectly
-
Change this in wp-report-post.php
wp_register_style( “wp-report-post-css”, plugins_url( “wp-report-post.css”, __file__ ) );
wp_enqueue_style( “wp-report-post-css” );to
// Register style sheet.
add_action( ‘wp_enqueue_scripts’, ‘register_plugin_styles’ );/**
* Register style sheet.
*/
function register_plugin_styles() {
wp_register_style( “wp-report-post-css”, plugins_url( “wp-report-post.css”, __file__ ) );
wp_enqueue_style( “wp-report-post-css” );
}
- The topic ‘how to prevent error on wp_register_style was called incorrectly’ is closed to new replies.