How to display related article lists in AnQiCMS to enhance user browsing?

Calendar 👁️ 74

In content operations, guiding users to continuously explore within the site, extending their stay time, is one of the key strategies to improve user experience and website conversion rate.The list of related articles is an efficient tool to achieve this goal.AnQiCMS as a high-performance and flexible content management system provides various ways to cleverly display related articles, thereby deeply tapping into the potential of user browsing.

Why is the related article list so important?

Imagine if a user finishes reading an article of interest, and if a few related, potentially appealing articles are immediately presented at the bottom of the page, the user will naturally click to continue reading rather than leave directly.This smooth reading experience can not only significantly reduce the bounce rate and increase the page views, but also help search engines better understand the relevance of website content, thereby optimizing SEO performance.AnQiCMS provides powerful and easy-to-use functions in this aspect, allowing us to flexibly build and display these key recommendations.

How does AnQiCMS intelligently display related article lists?

The template tag system of AnQiCMS is the core of its content operation capabilities, by using it flexiblyarchiveListLabel, we can implement multiple related article display logic.

1. Content-based intelligent recommendation: automatic association with minimal intervention.

AnQiCMS'archiveListThe tag is intype="related"In this mode, it can intelligently recognize the context of the current article and automatically recommend related content.This means that the system will automatically filter out other articles that are "closest" to the current article based on factors such as the category of the article, the publication time, and even the similarity of the content.For websites that publish a large amount of content on a daily basis, this automated recommendation mechanism greatly reduces the workload of operations personnel.

To implement this basic intelligent recommendation, we just need to add a similar code snippet to the article detail page template:

<div class="related-articles-section">
    <h4>相关阅读:</h4>
    <ul>
        {% archiveList relatedArticles with type="related" limit="5" %}
            {% for article in relatedArticles %}
                <li><a href="{{ article.Link }}">{{ article.Title }}</a></li>
            {% empty %}
                <li>暂无相关文章。</li>
            {% endfor %}
        {% endarchiveList %}
    </ul>
</div>

This code will automatically list 5 potentially related article titles and links based on the context of the current article.

2. Precise keyword association: Deeply mining the connection of themes

Sometimes, we hope that the related recommendations are more accurate, able to expand around the core keywords of the article.AnQiCMS allows us to take advantage of the document keywords set in the article backend to achieve this. By using inarchiveListthe tag withlike="keywords"The system will prioritize recommending articles that share the same keywords as the parameters.When the content is highly thematic or when you want to guide users deeply into a specific field, this method is particularly effective.

For example, if an article is about 'SEO optimization techniques', we can configure related recommendations in this way:

<div class="keyword-related-articles">
    <h4>更多关于“{{ archive.Keywords }}”的内容:</h4>
    <ul>
        {% archiveList keywordRelated with type="related" like="keywords" limit="5" %}
            {% for article in keywordRelated %}
                <li><a href="{{ article.Link }}">{{ article.Title }}</a></li>
            {% empty %}
                <li>暂无更多相关内容。</li>
            {% endfor %}
        {% endarchiveList %}
    </ul>
</div>

Herearchive.KeywordsIt will dynamically obtain the keywords of the current article, making the recommendations more targeted.

3. Operation manually selected recommendation: Control the accuracy of each recommendation

For certain key content, we may wish to intervene manually to ensure that the recommended articles are carefully selected by the operation team, whether for promotional purposes, user guidance, or strategic considerations.AnQiCMS provides a 'Related Documents' setting option in the background document editing interface, allowing operators to manually associate articles. By using inarchiveListUsed in tagslike="relation"Parameter, the system will only display the associated articles manually set in the background.

This brings great flexibility to content operations, especially suitable for promoting specific products, events, or in-depth topics.

<div class="curated-recommendations">
    <h4>运营推荐:</h4>
    <ul>
        {% archiveList manualRelated with type="related" like="relation" limit="5" %}
            {% for article in manualRelated %}
                <li><a href="{{ article.Link }}">{{ article.Title }}</a></li>
            {% empty %}
                <li>暂无运营精选推荐。</li>
            {% endfor %}
        {% endarchiveList %}
    </ul>
</div>

4. Aggregate topics by tags: broaden the user's exploration path

In addition to the aforementioned methods, AnQiCMS also supports related recommendations based on tags (Tag).Tags are another dimension of content classification, they can aggregate content across categories, helping users discover broader themes. ThroughtagDataListTags, we can list articles associated with a specific tag.Although this is usually used for tag detail pages, we can also obtain the tags of the current article on the article detail page first, and then display related tag articles based on this.

If you want to display content related to article tags on the article detail page, you can do it like this:

Related articles

How to display links to the previous and next articles on the AnQiCMS article detail page?

When visitors browse articles on a website, they often hope to be able to jump to related content conveniently, especially the previous or next one.This design not only improves the user experience, but also has a positive impact on the internal link structure of the website and search engine optimization.AnQiCMS fully considered such user needs, built in simple and efficient template tags, helping us easily implement the previous and next article link function on the article detail page.

2025-11-08

How to display website logo and copyright information in AnQiCMS template?

When building and operating a website, the website's logo and copyright information are an important component of brand image, building user trust, and fulfilling legal statements.For AnQiCMS users, managing and displaying this information is very intuitive and flexible. ### In AnQiCMS backend, set the website logo and copyright information AnQiCMS centralizes the global configuration of the website, allowing you to easily set various basic information.To set the website logo and copyright, you need to go to the 'Global Function Settings' page in the backend.1.

2025-11-08

How to set the TDK (Title, Description, Keywords) of the AnQiCMS homepage to affect search results display?

In website operation, making your website stand out in search engines is a key step to gain traffic.While the "front door" of a website - the homepage, its display effect in search results is often determined by TDK (Title, Description, Keywords).AnQiCMS is a system focused on enterprise-level content management, which provides intuitive and powerful settings to easily control the homepage's image in the eyes of search engines.--- ### What is TDK and why is it so important

2025-11-08

How to get and display the list of articles under a specified category in AnQiCMS?

To retrieve and display a list of articles under a specified category in AnQiCMS is a very common requirement in website content operation.No matter if you want to display the latest articles of a specific category on the homepage or aggregate all the content of a special topic on an independent page, AnQiCMS's powerful template tag system can help you easily achieve it.AnQiCMS's template engine syntax is similar to Django, allowing you to directly call backend data in HTML templates using concise and clear tags and variables.This article will guide you on how to use `archiveList`

2025-11-08

How to enable Markdown editor and correctly render mathematical formulas and flowcharts in AnQiCMS?

Enable the complete guide to Markdown, rendering mathematical formulas and flowcharts in AnQiCMS AnQiCMS, as an efficient and flexible content management system, has been striving to provide more convenient and powerful content editing and display capabilities for content creators.For those who often need to write technical documents, academic papers, or explanations involving complex logic processes, the original rich text editor sometimes feels inadequate.

2025-11-08

How does AnQiCMS control the display of content in different areas through the 'Flag' attribute (such as recommended, headline)?

## AnQiCMS: How to make good use of the "Flag" attribute to accurately control the layout of website content In content operation, it is not enough to just publish articles.How to make important content stand out, how to intelligently display specific content in different areas of the website, is the key to improving user experience and operational efficiency.AnQiCMS is well-versed in this field and has provided us with a powerful and flexible tool - the 'Flag' attribute, to巧妙ly achieve this goal.What is the content "Flag" attribute?In short

2025-11-08

How to display the publication time of articles in the AnQiCMS template and customize the format?

In website content operation, the publication time of the article is a seemingly simple but crucial detail.It not only affects users' judgment of the timeliness of content, but is also an important reference factor for search engines to evaluate the freshness of content and for ranking.For AnQiCMS users, flexibly displaying and customizing the publication time of articles in templates is a basic operation to improve website user experience and SEO performance.

2025-11-08

How to retrieve and display single-page content in AnQiCMS, such as "About Us"?

In website operation, pages like "About Us" and "Contact Information" are indispensable components. They usually carry relatively fixed and important content such as corporate culture, contact information, and service introduction.For users of AnQiCMS, obtaining and displaying these single-page contents is not only simple and efficient but also highly flexible and customizable.This type of independent page, with content that does not change often, is classified as "single page" by Anqi CMS, and a dedicated management module is provided in the background for easy creation, editing, and publishing by users.

2025-11-08