How To Create Custom Post Meta Boxes In WordPress - 0 views
-
Since you only want your post meta box to appear on the post editor screen in the admin, you’ll use the load-post.php and load-post-new.php hooks to initialize your meta box code
This particular OpenGraph feature is in the Publicize module, so you’d think you could disable that, but that doesn’t seem to work. Instead, adding this line in your functions.php should fix this particular problem:
1 | add_filter( 'jetpack_enable_opengraph' , '__return_false' , 99 ); |