You could make a template for this in your active theme, then assign that page to use the new template file.
null-template.php
<?php
/**
* Template Name: Null
*/
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_title();
echo( wp_strip_all_tags( get_the_content() ) );
}
}
Then create a new page (or edit the one you want to be HTML-free) and make sure it’s using the Null template.
This should result in a page that has no HTML whatever in it.
References
- Template files
wp_strip_all_tags()
for when you really don’t want any tags left behind
Related Posts:
- Retaining old HTML archives and displaying themes conditionally
- Change Default Image HTML
- Edit raw HTML of the landing page
- In which directory do I find a specific HTML code of my wordpress page? Some of it seems to be missing after checking all pages [closed]
- How do I apply my CSS to a theme page?
- Understanding Theme specific Code
- Theme option not saved if in wp_editor() and html decoded
- How does WP generate html?
- Finding and disabling ‘rogue’ stylesheet from header: Source Sans Pro
- Need to edit themes HTML code
- Modifying the markup in the Tag Cloud widget?
- WP HTML Templates – Any way to get bloginfo() or the path to the theme folder?
- How to trace and resolve a theme problem such as flickering links in WordPress? [closed]
- Insert the current theme header into an external HTML/XHTML file
- removing side space between para and container on generatepress?
- share wrordpress data between two shared hosts using REST API
- Custom CSS is overwritten by WordPress?
- TwentyFourteen Theme : Changing grid layout
- Meta title W3C Validation Error with
- How to create an Single-Portfolio page?
- Help with responsive theme styling issue
- How to change background color in the Notepad++ text editor?
- What are all the available parameters for query_posts?
- Does WordPress work without a theme?
- Link to specific Customizer section
- When cropping a header image, retain meta data (i.e. name, description, etc.) from original image?
- Difference between stylesheet_directory and template_directory
- Adding a Template to the Page Attributes Panel for both Posts and Pages?
- How do you change the theme location?
- How do I put my comment form above the comments?
- Edit theme wp_head
- Theme Advanced Styles in Visual Editor and Paragraphs
- Want to have the Post editor remembering the last editing position
- Enqueue different stylesheets using IE conditionals
- Override parent theme translation on child theme
- Forbidden 403 error, permission to access, unable to read htaccess
- Theme of codinghorror.com
- How to add template to theme in WP
- How do I copy my Parent Templates to my Child Templates?
- How can I show more than 15 themes at a time in the admin menu?
- What is the WordPress Pinecone sitting on top of? [closed]
- Create a dashboard-style site (not WordPress dashboard) – is there a theme? [closed]
- Help with WordPress Query
- How do I set the featured image size on the single post?
- Are theme .php files stored in the database?
- Execute filter in theme as last
- Why style.css with ?ver=3.9.2 not updating as the one without ?ver=3.9.2?
- Inconsistent translation on a WP site
- How can I have different theme with same booking table? [closed]
- Updating my free theme delete all my changes [closed]
- Do not show one specific widget on one specific page
- Website redesign – New theme – Help needed
- How can we hide the parent’s theme url at the child themes details on a multisite?
- Tips for managing code when developing a parent theme framework
- How can I show full text, not summary for the homepage and in categories?
- Wp theme not working well as forgot to create child theme [closed]
- Theming global variables – initializing in index.php but using in header.pho
- Understanding the theme details in style.css
- Need a theme that let the posted content stretched maximum width [closed]
- Copying post thumbnail to custom field
- How to override theme class function to child theme? [closed]
- How to make content area in full width in Twenty Twenty-One theme?
- Trying to fix a website that was built with WordPress and then taken off of it
- How to integrate JSS to WordPress
- How to remove a large ugly space from my wordpress site?
- Moving the search bar to be in menu bar
- Why cant I change the text on this theme?
- Why I obtain different visualization when I run the website on my local machine and on remote server?
- enqueue_script doesn’t work with HTML5 blank theme
- Get WP Install Directory
- How can I add text on top of slideshow? [closed]
- Display Headings on Index page in different font sizes
- I made new theme directory, why won’t it show up in admin GUI?
- Whitespace between logo and site title in Twenty Twenty-Two
- CSS appears to not work on any WordPress theme
- Is it a good idea to make WordPress theme repository public?
- How to validate new added field (Phone number) which is added to registration form?
- How do you remove the “The Link You Followed Has Expired” error for a subfolder website?
- Any way that guest users see the site as registered users?
- Child theme not activating despite success message
- Webflow Interactions on WordPress site?
- After changed url from http to https, it says “This site can’t be reached”
- My theme is adding an unmatched end tag and outputting it to my screen
- WordPress 404 on style.css but not on all pages
- Is a dynamic website with lots of urls possible with wordpress [closed]
- Edit box-header on WordPress Dashboard
- Is there significant risk in not keeping a theme updated? [closed]
- Sticky header for wordpress changes size and logo size as I scroll down
- How to assign a Category to a Page, when both are created on theme initiation?
- When translating not all string are present in POedit
- How to retrieve images attached to post through media library?
- adding a unique page to an existing site
- How to fetch the no. of Users dynamically?
- spacing disappears on posts when importing
- Create a child Theme or custom Theme
- how to get rid of header banner buttons on child themes [closed]
- Starting fresh on a blank “theme” [closed]
- Mystique theme: widgets on sidebar falling under the page content
- HTML content filtered on blog page
- Table of Contents in Left Navbar [closed]