The earliest safe hook to get post information is the template_redirect
hook. All the hooks in question runs before WordPress has setup postdata, so any post info are still unavailable at that point.
The globals like $wp_query
and $post
will still contain no data, that is why your efforts returns nothing.
EDIT
Extra info as per comment by @TheDeadMedic
Actually
wp
is an earlier, still-safe hook – just make sure to useget_queried_object()
instead of relying on$post
global
Related Posts:
- Using the ‘draft_to_publish’ hook (post status transition)
- Enqueue style inside shortcode but its loaded at the bottom of page (before footer scripts)
- Good tools for locating hooks in a wordpress page/admin interface/blog post?
- Is it possible to add an action to the currently running action?
- How to prevent action in ajax request, when in admin side?
- template_redirect not being called when using ajax
- What are the benefit in adding hook in the init() hook?
- add_action in functions.php, do_action in plugin?
- add action for displaying posts using a shortcode
- ‘wp_login’ action hook not working with wp-login.php file
- Any hook for pre-plugin-update -either bulk or single plugin update
- How to get all of the activate_plugin action parameters?
- Get Time Taken By Each Action Hook in WordPress
- Are functions in main plugin file called before function bound to register_activation_hook runs?
- Hook for page Request?
- Custom CSS not being added by plugin
- The function called on the wp head hook becomes null
- Passing function into add_action always returns the first argument
- Plugin Hook: Get posts
- How wordpress plugin hooks works? [duplicate]
- How to pull code snippet from functionality plugin?
- React JSX in WordPress Plugin Development
- Where (or when) should I register a new taxonomy?
- How do action and filter hooks understand where to look for the core function that we hooked our function to them
- WordPress filter that hook after each action/filter hook
- wordpress plugin is not activating from widget
- Insert new user with form submit ‘init’ hook
- Making a plugin only available on the front-end for the logged in super admin
- When to load auto-login code?
- Enqueue WordPress plugin scripts below all other JS
- How to stop activating a plugin and show admin notice when dependent plugins minimum version is not met
- Using a post-signup hook to get user details
- Calling plugin function inside custom plugin for onclick event
- How to check current user before all actions and filters?
- jQuery for custom plugin not working with Divi theme
- Custom plugin init action causing general slowness
- do_action() hook into load-(page)
- Howto check version of another plugin and then add a submenu page to it
- Inject HTML meta tag inside wordpress tag using add_shortcode
- How can I remove the WordPress-Version (?ver=5.x) from my plugin
- Create shortcode to echo javascript
- How to get post ID with hooks publish_post, new_to_publish, etc
- edit_user_profile and show_user_profile are not firing inside a class
- Add action to fire when a published post is updated
- How to pass variables to a function argument using add_action [duplicate]
- Submit Form data to another page via Ajax (WordPress Way)
- Why am I unable to load scripts in head in plugin?
- the_post hook is not firing for me
- Why do plugins often ask to add in to templates?
- Does using `add_action( ‘init’…` cause performance issues?
- Deactivate JS Script in Plugin Shortcode
- Create a post builder skin in a plugin
- remove_action not removing add_action from constructor
- Plugin Development – Functions or Hooks?
- How to get menu location in wp_update_nav_menu hook
- How do I add some javascript validation to the admin interface form’s onsubmit?
- Are there action hooks for comments?
- How do I add $_SESSION[”] to my wordpress page?
- WooCommerce: after install hook
- Save user total active time after login in wordpress [closed]
- How to remove a class function from a plugin by using remove_action()?
- Advanced WordPress plugin activation detection
- wp_loaded with static Singleton
- is it possible to hook every page style?
- Add action to custom Function
- How to use add_action for multiple instances of the same class
- What hook can I use to modify custom post data before it is displayed on the page?
- How to hook into action/filter call
- why the wp_register_script doesn’t work for register_activation_hook
- Quick press publish post hook
- using wp_footer hook in a plugin
- How to append new form elements in “Add New” form of Users in WordPress admin panel?
- How to deactivate my plugin upon deactivation of NextGen
- How to automatically activate users after registration without activation email?
- Creating a plugin that will display text on every page
- I cannot include a file in my plugin settings page
- Activation flow of a plugin in a multisite environment
- Hook from plugin doesn’t fire up from external PHP script
- Add hook after content without formatting
- Why won’t wp_enqueue_script work within any plugin file?
- wordpress plugin add page when activate
- admin_post hook not firing function inside class
- update_option_{$option} not working (do function after options are saved)
- Callback hooked to post_updated firing on new posts as well
- Why do actions with class and public method don’t fire __construct()
- Hooking into the HTML header container
- When/where would want to attach other classes to the base class in a WordPress plugin?
- Nested Actions and Filters
- Use action, filter, or hook to append HTML to WordPress plugin function
- Get post content inside plugin class method
- Hook to display element as product on category page
- Remove action added in plugin class from theme
- {status}_{post_type} does not run correctly?
- WordPress Boilerplate Plugin doesn’t see callback functions for add_settings_field and add_settings_section
- echo plugin results on pages
- plugin not hooking to my custom hook
- Why can’t I shove an instance of a class into a variable from a do_action hook?
- wp_login_form() ignoring login_form action hook
- Passing a parameter to filter and action functions
- Run only on plug-in activation instead of wp_head