If needed, publish content that you plan to reuse. If you plan to reuse a section of a page, the sections must contain headings.
You can only reuse Topic, How-To, or Reference page content. Category and Guide page content cannot be reused.
When reusing sections of a page, if you change the heading of the source content after reusing it, the reused section will not display correctly, even if you hide the title.
CSS blocks added onto a page will always be brought over when using Content Reuse, even if the section you have selected does not contain the CSS block. Tags, however, will not be brought over with the reused content.
When reusing entire pages, it is important to add a canonical link element and noindex meta tag to tell search engines to look at the source page as the preferred page.
<html> <head> <link rel="canonical" href="url_of_prefered_page"/> </head> </html>
<div>
and noindex
class.
<div class="noindex">wiki.page("Category_4/Guide_4_A/Original_content")</div>
It is possible to reuse a page that already contains a wiki.page
call. In that scenario, whenever you load the new page, you are essentially making two wiki.page
calls.
Depending on the amount of content you are reusing and the amount of calls you are ultimately calling on page load, keep in mind that reusing content that contains a wiki.page
call can result in slower performance when loading the new page. We recommend avoiding reusing content more than twice.