This will not work in the post content context because filter for wpauto is executed before the shortcodes are processed. So, your shortcode tries to disable wpauto filter, but that filter was already executed on that content.
You can do with this (in theme functions.php file, and similar for excerpt):
add_action('the_content', 'wse_281097_content_remove_wpautop', 1);
function wse_281097_content_remove_wpautop() {
if (is_single(15)) {
remove_filter('the_content', 'wpautop');
}
}
This will remove wpauto early by checking if the current post is with ID 15, so it will disable wpauto for that post only. You can replace condition in line 3 with anything you want to target your specific posts.
Related Posts:
- Conditionally Loading JavaScript/CSS for Shortcodes
- Show shortcode without executing it
- shortcodes output before content [duplicate]
- Run visual composer code in php page
- WordPress adds br in between my shortcode
- Shortcodes, HTML tables, and multiple rows
- Audio or playlist shortcode condition according to the amount of files on attachment page
- Does a shortcode with a single attribute have to use an array?
- Shortcode to Gutenberg-block: additional text on front-end and conditional display
- How navigation works in custom loop within shortcode?
- Use [shortcode=”value”] instead of [shortcode att=”value”]?
- I dont want to show shortcode in tag
- Post loop created via shortcode not displaying shortcode in content
- Pass shortcode variables to template
- passing multiple parents value into a shortcode
- Is it possible to add a repeater field to TinyMCE’s option window?
- Shortcodes: Pros and Cons
- esc_attr not working in shortcode
- Raw output (preventing wpautop)
- Conditionally loading Facebook PHP SDK in shortcode
- Can’t understand $atts in functions?
- Are .MP3 files with capital letter extensions allowed in [audio] shortcode?
- How to handle shortcodes when using the JSON API
- Are shortcode functions applied while rendering the content, or are they executed and stored with the post content?
- is_admin() returns false in save_post hook with Gutenberg editor
- How to parse this shortcode?
- Get Posts shortcode plugin and meta_query?
- possibility to control embedded video timeline with buttons and links external to the player
- WordPress Gallery shortcode: Display one category ID only
- Creating shortcode with parameter
- Video Shortcodes not working in WordPress
- Custom shortcode is not working in text widget
- Get post object in shortcode function
- How to insert image and text from admin panel throughout my theme
- Use shortcodes in terms description? [closed]
- Adding to the_content or a variable from within a shortcode function
- How to add shortcode to HTML file (not showing on website)
- Custom Shortcode: define cursor position/insertion point?
- Shortcode: text content ends up outside html tags
- show shortcodes in editor
- Page code showing in WP Dashboard
- echo do_shortcode just prints the shortcode name and not its content
- Insert shortcode between ”
- Create a shortcode to use in visual editor
- Basic do shortcodes question
- What is this format called (nested shortcodes)?
- Problem with height in video shortcode
- How to build dynamic pages?
- Shortcode not showing $content in correct place
- Best tools for preparing and styling a table [closed]
- How to reload the shortcode content when the database is changing
- Best way to include reusable sections in page content
- Custom shortcode to display posts, first post is full
- Pass fileurl parameter into shortcode from Advanced Custom Fields
- caption shortcode using image alt as caption
- Shortcode arguments to another shortcode
- Sanitize or treatment of string in editor via shortcode
- Is it possible to handle two or more shortcodes in a single page?
- Toggle Shortcode Sanitize Title
- Substituting value via shortcode
- Can’t render shortcode when html tag contains hyphen
- Shortcode to appear and show the date not code in Title and description of Social Media sites
- Not to escape a text
- Color on Shortcode insert that creates a button
- shortcode doesnt work on excerpt
- Adding Author URL to Nav Menu via Shortcode
- Displaying an interactive web map on my wordpress site
- how to add shortcode widget at end of main blog page
- Shortcode result appears above page content
- Pagination for custom posts loop
- Shortcode is not showing content when placed in editor (post_type = page)
- Modify [caption] shortcode so and are not used?
- May an attribute have no value?
- How to insert a short code into Contact Form 7 in WordPress that will call a function once the submit button is pressed
- How to Call Related Post based on Categories Inside Post Content with Shortcode?
- SQL query to bulk change short code in all posts
- How to strip header tags & shortcodes from the_excerpt()
- shortcode display metainformation as linked image
- Multiple shortcodes only use attributes from one of the shortcodes on custom plugin
- Cannot modify class property from shortcode handler function
- Reusable Dynamic Taxonomy Shortcode
- How do i remove Business feeds Shortcode fatal error
- Can’t place endwhile in the loop properly in a shortcode
- How to reduce the image size inside an icon? [closed]
- How to insert visual compser post grid shortcode in a custom page template? [closed]
- WordPress plugin shortcodes not outputting anything
- Shortcode tags appear on mobile themes
- Manipulated shortcode output
- Where is escaped the shortcode?
- Str_replace using shortcode with multiple changes
- Changing layout of defaul gallery output to masonry
- shortcode change variable base on user
- Inserting shortcode is blanking excerpt – any ideas?
- Previous/Next with the same category
- Add widget/shortcode to sidebar OUTSIDE of the theme
- How to remove https:// from shortcode generated url
- How to enable on custom shortcodes
- Nested ShortCode works inside the_content, but not outside of it
- How to reuse php templates as shortcodes?
- Shortcode attributes from meta query variables