The theme is using a custom post type, in this case, “lyrics”. Converting the old posts over to it should be as simple as writing a single query to update the old posts to the new post type.
The query will be something like:
UPDATE `wp_posts` SET post_type = "lyrics" WHERE post_type = "post";
Just as an added precaution, run this one first to ensure that all the posts you think should be converted will be affected and check the results:
SELECT * FROM wp_posts WHERE post_type = "post";
Related Posts:
- Where are wordpress custom types stored?
- Delete all posts of a custom post type—efficiently
- Custom Post Type with Input fields to seperate table on database.
- Why is get_post_format() for “Standard” returns empty
- Custom post types and child theme
- Password-protect a custom rss feed
- Custom post type or just use custom fields
- How to override parent theme function through the child theme [closed]
- Use Custom Database with Custom Post Type
- How do I write this SQL statement for Posts written in last 24 hours?
- Single Page WordPress CSS and JS links
- Save or update data when custom post published
- Using posts and postmeta table to store custom Address Book Plugin data
- How to use custom post type APIs, but use a different db table
- How to use custom fields to enable sticky posts on custom post types?
- Developing WordPress on Kubernetes
- I am trying to output portfolio items with a picture. This code doesn’t seem to be working. What am I doing wrong?
- Recommended custom post type structure for TV Schedule site?
- WordPress post count not showing for custom post type author
- Pre_get_posts filter overwrites all search functionality
- Adding custom tables to WordPress
- Custom template with CPT doesn’t display on frontend
- Create a wordpress test-system as a clone from productive system
- Sorting custom post type columns with external data and without meta values
- Database to page routing API?
- Store CPT ‘Reviews’ average ratings to a WordPress DB table or to a DB custom table?
- How to change wp prefix for custom post type only?
- What is the best practice for displaying my plugin content in themes?
- Is it possible to store Custom Post Type data in separate set of tables and still have wp_post class functionality?
- How to import a custom MySQL DB table into a WordPress custom post type
- WP_Query orderby and tax_query
- Migrating a taxonomy’s tags to the native category
- Adding custom image sizes and post types to a plugin or to a theme?
- Want to be able to sign up subscribers as authors
- How to organise this data within WordPress
- Save custom post type to external database
- Unable to set featured image
- Specifying meta field’s column type in Database using add_post_meta
- Replace dynamically content in a custom database table when a custom post is created
- Save and user submitted data from a form and display them in the wp backend
- Dump custom post type database
- uploading problem of wordpress theme
- Page Template Dropdown For Custom Post Types
- Designing a custom post type with a minimum number of meta fields
- Custom post types problem
- why post_class() function apply css classes to all other files?
- Should Custom post types and fields be in the theme files or in a custom plugin packed into the theme?
- WordPress hook which triggers on post import
- Update all published posts at once
- Create a simple Testimonial page
- One Site. One Theme. Multiple Stylesheets without plugins?
- Custom Post Type – Portfolio no longer works
- Methods for development wordpress themes [closed]
- Render a Post or Page using the correct file
- Ideas to connect external database table to wordpress posts as custom field source
- Database alteration: users who voted
- Using custom post types WordPress network
- delete duplicate meta_value with same post_id
- custom post type: own database table structure and custom “new-post” interface
- How do you make relational post types in WordPress? [duplicate]
- Having a repeating custom field in admin custom post type, what I’d go better with, for DB’s sake? ACF repeater or query a different post type?
- Invalid content when I try to import custom post type from the old template wordpress
- Does this archive template part look like its making too many calls to the db?
- Right way to store a large set of similar information on website? [duplicate]
- when looping through custom post data not appearing
- How select query is generated in a Custom Post Type?
- dynamic vue widget inside custom post
- Create 3 Levels of relations with WordPress
- Exporting Post type from one theme and importing it to another theme
- custom data model – link and populate from admin backend
- Confused about where to store my data
- Event Manager: Events Deleted are still in DB as published but hidden in admin
- Populate custom post type/custom fields from an external database
- Automatically convert standard posts with custom fields to custom post types
- Change Background Color For CPT Template
- WordPress add taxonomies/terms list as a menu in archive page
- Adding CPT changes entire layout of my site except for the archive of that CPT
- CPT or Custom Table for Repository of Serial Numbers
- getting a blank login page :( any way I can fix this without having to do a clean install?
- Use Tags to Query Associated Multiple Posts and Get The Average Of Custom Field Values
- How to get main div html to print a list of posts inside?
- erase post excerpt limitation [×]
- Shared Custom post type between WP network sites
- How to get $post object available inside functions.php to localize script?
- Query custom post type and showing its content
- custom post type for custom talbe
- Problems with a custom meta_box
- Create custom post order (with custom post type meta)
- Check in function on custom page
- Query by post type or category
- Inserting into WP DB
- Change position of Post Formats box?
- Save number of Facebook likes to database
- WordPress and Unity high scores table
- Checking for published posts in a certain post type
- WordPress Admin Page Slow. Customer Post Type is the slowest
- how to display custom taxonomies in front page
- REQUIRED: The theme uses the register_post_type() function, which is plugin-territory
- How can I produce multiple webpages with a different output based on one entry/Page/custom Page?
- Remote database access on another wordpress site’s custom post type