The add-on provides a shortcode that displays the content of a page, referenced by the page slug.
A possible use case would be if you want offers or affiliate information to be displayed in a text widget on each blog, and need the information updated centrally. In that case, here is how one could use this add-on:
- Create a page, title “Affiliate information” for example.
- Broadcast the page.
- Note down the slug of the page. In this case, it will probably be
affiliate-information
. - Since widgets cannot be broadcasted, you’ll have to manually create a text widget on each blog.
- Put the following text in the widget:
[bc_page_content slug="affiliate-information"]
- Done!
The shortcode will then find the post with this exact slug and show its content. If you ever need the affiliate information changed on all blogs, just update the parent post.
To future-proof, why not link the bc_page_content
in the widget to a page that in turn contains several more bc_page_content
shortcodes, so that you can put several times of information in the same widget?
Glad it’s useful for you.