Hello community, I am wondering if there is a way to create a blog post via either a macro or clickable item. We used to have a method of doing this via a custom weblink, but this stopped working in a recent update (the same functionality was used for creating child pages as well, but built in macros got around that issue). When looking through all the macros, the only "blog" related one is to embed a *view* of all blog posts, but not one to create a blog post itself.
This was the old method we had, by placing this custom weblink into a clickable image:
http://collab/confluence/pages/createblogpost.action?spaceKey=[SPACEKEY]&labelsString=blog
Currently, the only way to make a blog post now is to click the 3 dots at the "create" button on the Confluence top bar, and then selecting the "blog post" template.
Any ideas? Surely there is a better way to create new post. Thanks!
Here are a few approaches to achieve a "create blog post" functionality in Confluence, optimizing for the best outcome for the person transacting (i.e., making it easy for users to create blogs):
1. Direct Link to Create Blog Post (Most Straightforward)
This is often the most reliable and simplest method, similar to your old custom weblink. Confluence has a specific URL structure for creating new content.
https://yourconfluencesite.com/wiki/spaces/SPACEKEY/
. The SPACEKEY
is what you need.https://yourconfluencesite.com/wiki/pages/createblogpost.action?spaceKey=YOURSPACEKEY
Replace yourconfluencesite.com
with your actual Confluence instance URL and YOURSPACEKEY
with the key you found in step 1./link
or click the "Link" icon in the editor toolbar.<a href="/pages/createblogpost.action?spaceKey=YOURSPACEKEY" class="aui-button"><span>Create Blog Post</span></a>
aui-button
class gives it the standard Atlassian button styling. This requires the HTML macro or a user macro with HTML capabilities.)Why this is often the best outcome:
2. Utilizing the "Blog Posts" Macro (with a trick)
While the "Blog Posts" macro isn't designed to create a blog, there's a community-suggested workaround:
label
that you know for sure is not used on any blog posts in that space (e.g., _no_blogs_here_
).Considerations:
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.