Which hook to add action on specific page?

wp_loaded hook is too early for environment to be completed and for conditionals to work.

You need to do this a little later, for example on admin_head hook.

PS also use get_the_ID() for cleaner look 🙂

tech