Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Is there any way to convert an existing Blog post to a Page?
Community moderators have prevented the ability to post new answers.
Hey @Kathy Landon, this feature is now available! Check out this article I wrote to learn more about how it works.
Cheers,
Avni Barman
Product Manager, Confluence Cloud
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you have the article about Existing BLOG Post --> Page?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Kathy,
Before we begin, I would like to welcome you to our community. We hope that you are able to belong to our awesome community.
Currently, Confluence does not have such a feature. :(
It looks like the Developer have marked this feature as not fix.
However, we do have third party option that has this feature.
If you are feeling adventures. You can modify the SQL below to make it work for you. Do make sure you backup your database before proceeding.
update CONTENT
set CONTENTTYPE = 'PAGE',
CHILD_POSITION = null,
PARENTID = null,
PREVVER = null
where CONTENTTYPE = 'BLOGPOST'
and SPACEID = 12345678
AND CONTENTID NOT IN (1, 2)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you please verify the SQL command for converting a particular page
from page to blogpost?
I'm thinking it has to go something like this ...
update content
set contenttype = 'BLOGPOST',
CHILD_POSITION = ??,
PARENTID = null,
PREVVER = null
where CONTENTTYPE = 'BLOGPOST'
and SPACEID = 12345678
AND CONTENTID = ##
Just wanting to make certain there isn't any other field that needs to be set when going this direction.
Also, is there a link to a documentation of the database structure I might access without going to examine the db itself?
Thanks for your post!
I look forward to your reply.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.