Completely skipping wp_head
and wp_footer
doesn’t seem like a good idea, many core components and plugins depend on these hooks. Instead, you could create a light header and footer, and load them via an extra argument to get_header()
and get_footer()
. get_header( 'light' )
will load header-light.php
instead of the regular header file. Create one without the visual header of the other pages, but leave the wp_head
action intact.
Related Posts:
- Difference Between Filter and Action Hooks?
- Which hook should be used to add an action containing a redirect?
- How do you use the plugin boilerplate loader class to hook actions and filters?
- How Do I Load My Action Earlier Enough?
- Does WP fire delete_post when trashed posts are automatically deleted?
- What’s the earliest point I can get the queried object ID?
- How do I Make a Theme “plugin-ready”?
- What’s the difference between hooks, filters and actions? [duplicate]
- How to use filter hook ‘post_updated_messages’ in coherence with action hook ‘save_post’
- Is it possible to create an action hook using do_action() within add_action()?
- How can I hook into existing WordPress Bulk actions?
- Define a function outside a class and call the function using action or filter hook
- Create a plugin to change the action to which a function is hooked
- Modifying values with add_action to be sent to db
- Woocommerce – Hide a Column in Cart Table
- Hook to get image filename when it is uploaded
- Which are the hooks run before/after when a category’s deletion?
- Should action callbacks start with a verb?
- Execute Hook on the footer or header after activating a plugin
- Why is my javascript not invoked in my hooks except wp_head?
- Namespaced action and filter tags
- Where to call wp_enqueue_script in a plugin with custom template?
- Prefixing plugin hooks (actions/filters) with a wrapper class or functions
- I have 2 plugins using the same wp_login action hook and one is not working
- How dynamic action login_form_{action} is working
- How to get all queries’s results after they have executed?
- Bug: Post needs to be updated twice when adding action for save_post hook
- When does save_post hook fire on post save/update
- Hook add_attachment error
- Call to undefined function is_home() or any conditional tags
- How to find list of all functions bind to a particular hook from my plugin?
- Can I Hook Into the TinyMCE Insert/Edit Link Button to Use Shortlink For Post?
- Using init hook for register_taxonomy is causing invalid_taxonomy in wp_insert_term()
- Action / Hook when a new plugin is added
- apply_filters() and call_user_func() to define and call a function outside a class
- Trigger function on Remove block or add new block in Gutenberg JavaScript
- WordPress Plugin Boilerplate – add actions and/or filters based on user’s role
- remove different admin menu for specific users
- add_option_{$option} action hook not being called
- Does WordPress have something like timer hook?
- Template file structure , wordpress hook for altering the template
- How can I set a dynamic value for post_updated_messages based on return value of post_updated?
- Insert plugin html content to a specific spot in the frontpage
- Apply function on all action hooks?
- Trigger a JavaScript function based on the data fetched from Woo commerce hook
- Ninja Forms: Front-End Forms, Post ID?
- How to override existing plugin action with new action
- How to implement color picker from wordpress in my plugin?
- How to control output of custom post type without modifying theme?
- Is there widely accepted phpDoc syntax for documenting which hook calls a function?
- WordPress scheduled task is called but not executed
- How to Add a .js file Only in one specific Page Dynamically to Head
- Enqueue style inside shortcode but its loaded at the bottom of page (before footer scripts)
- How to modify post content before writing to database?
- How to prevent loading of all plugin’s resources?
- How to trap “Publish” button to check for meta box validation?
- Pass javascript result to shortcode executer function
- When is it too late to call the action wp_enqueue_scripts?
- Use js script from one plugin in another plugin
- What is the Difference between directly call a function and call a function using add_action?
- Looking for callback function after Gutenberg is rendered?
- How to register custom post types in a plugin?
- Best Practices for Creating and Handling Forms with Plugins?
- Is there a better way to implement responsive images than what WordPress uses by default?
- How to prevent action in ajax request, when in admin side?
- Prevent Javascript Facebook SDK Conflicts in plugin
- creating custom archive template within plugin for custom post type using archive_template filter
- Is there an event or an other method that tells me the preview is loaded?
- .mo translation strings not loading in PHP scripts that handle AJAX calls
- Trying to understand order and frequency of action hooks firing
- Do I have to worry about useState causing a re-render?
- wp_set_object_terms not updating database without a die()
- Get Time Taken By Each Action Hook in WordPress
- Are functions in main plugin file called before function bound to register_activation_hook runs?
- My WordPress plugin cannot load my JavaScript file
- Adding function to Genesis genesis_header [closed]
- template_redirect or admin-ajax.php?
- Show error message after exception handled
- Inserting code to HTML view from a pop up initiated from visual view
- Remove an action by extending class and replacing it
- Trying to get class to instantiate ONCE (or, “why do I keep punching myself in the head?”)
- Restrict certain actions to plugin-specific admin menu pages only
- Adding tables to dashboard pages programmatically?
- How to update global variables in plugin activation callback?
- Reading plugin settings in esnext wordpress block
- Dynamically modify content added to table via javascript
- Why does do_action pass a blank string as the first parameter if no $arg is set?
- Hook for validating and rejecting frontend image upload
- Overriding the template files using a plugin for all themes
- How do I remove an action hook inside a class that is called by another class?
- Javascript scroll eventHandler only working when I’m logged in in WordPress
- Pass javascript result to shortcode executer function
- WordPress Reset password Strength set to medium
- Add language localisation to javascript alert?
- How to display archive by selecting year and then selecting month
- How wordpress plugin hooks works? [duplicate]
- How do I use (or mimic) document.getElementById() on a page loaded from WordPress database?
- Send Webhook when post-status is publish or trash
- Using “add_image_size” to register custom image sizes inside plugins not working
- How do I access the contents of WordPress Classic editor in admin area with JavaScript?