wpdevshedcom / WP-Image-Embeds

WP Image Embeds Plugin Repository
0 stars 0 forks source link

Using global $post in the footer #9

Open justintadlock opened 8 years ago

justintadlock commented 8 years ago

In the dialog_html_form() method, you can't always rely on the global $post variable in the footer. You can only rely on that within The Loop.

Instead, check is_single() and use get_queried_object_id() to get the post ID.

Make sure to pass that post ID into get_post_type() there too.