Creates warnings because the plugin code needs 2 lines commenting out
-
This post.php plugin code has these 2 lines at the top which try to register functions which aren’t anywhere inside the plugin. If you enable this it works, however it shows warning at the top of your wordpress installation on every page.
Easiest way to stop them is to comment out these 2 lines…
add_action( ‘save_post’, ‘post_meta_box_save’ );
add_action( ‘wp_enqueue_scripts’, ‘enqueue_styles’ );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Creates warnings because the plugin code needs 2 lines commenting out’ is closed to new replies.