Article
Contents
- Syntax
- Attributes
- Examples
- Example 1: Basic use as single tag
- Example 2: Specifying a form
- Example 3: Offsetting article display
- Example 4: Using pageby to split article output on a page
- Example 5: Combined with custom fields
- Example 6: Article sorting
- Example 7: Build a
<section />
-separated list of article titles grouped by section - Example 8: Filter articles from the URL (v4.8.6+)
- Genealogy
Syntax
<txp:article />
The powerful article tag can be used as either a single tag or container tag and used to output one or more articles depending on the context it is used and its attributes. Default attributes will be used when nothing specific is assigned.
It may be used as a container tag, in which case it must be specified as an opening and closing pair of tags, like this:
<txp:article>
…contained statements…
</txp:article>
This is equivalent to putting the contained statements into a form named my_form
and using <txp:article form="my_form" />
.
The tag is context-sensitive, which means it will grab articles from the currently viewed section/category/author, etc.
When used on the front page, article’s context will include articles from all sections set to display via ‘Section appears on default page?’ settings (see the Sections panel for more information).
Note: <txp:article />
is not the same as <txp:article_custom />
- you can check out how that tag differs if you’re unsure of the differences!
Attributes
The tag will accept the following content/behaviour and presentation attributes (case-sensitive) as well as the global attributes :
allowoverride="boolean"
- Whether to use override forms for the generated article list.
- Values:
0
(no) or1
(yes). - Default:
1
. customfieldname="value"
- Restrict to articles with specified value for specified custom field name. Replace
customfieldname
with the actual name of the custom field. - Important: Using dashes
-
or spaces may cause errors or render this feature ineffectual. Underscores in both custom field names and values are confirmed to work. exclude="article id(s) or field(s)"
v4.6.0+- Exclude a specific article or list of articles (each ID separated by a comma), or the articles with matching fields (author, category, etc.).
- Default: unset.
form="form name"
- Use specified form template to process each article.
- Default:
default
. frontpage="boolean"
- Include only those articles with ‘Section appears on front page?’ set on the Sections panel. If set to
0
, all articles are displayed. - Values:
0
(no) or1
(yes). - Default:
1
. keywords="keyword(s)"
- Restrict to articles with specified keyword(s).
limit="integer"
- The number of articles to display.
- Default:
10
. listform="form name"
- Use specified form when page is displaying an article list.
- Default:
article_listing
. match="field"
v4.6.0+- Use comma-separated field(s) to match articles to the given URL parameters. Incoming variable names may be remapped by specifying the variable after an ‘=’ sign. See Example 8.
- Values:
category
.
category1
.
category2
.
keywords
.
any custom field. - Default: unset.
offset="integer"
- The number of articles to skip.
- Default:
0
. pageby="integer"
v4.0.2+- The number of articles to jump forward or back when an older or newer link is selected. Allows you to call the article tag several times on a page without messing up older/newer links.
- Default: value matches the value assigned to
limit
. pgonly="boolean"
- Do the article count, but do not display anything. Used when you want to show a search result count, or article navigation tags before the list of articles. Just make sure that, other than
pgonly
, both article tags are identical (form-related attributes are the exception, they do not need to be assigned). - Values:
0
(no) or1
(yes). - Default:
0
. searchall="boolean"
- When outputting search results, include only those articles with ‘Include in site search’ set on the Sections panel. If set to
0
, only articles in the current section are displayed. - Values:
0
(no) or1
(yes). - Default:
1
. searchform="form name"
- The form to be used for your customized search results output.
- Default:
search_results
. searchsticky="boolean"
- When outputting search results, include articles with status
sticky
. - Values:
0
(no) or1
(yes). - Default:
0
. sort="sort value(s)"
v4.0.4+- How to sort the resulting article list. Specify a value from the ones below, followed by a space and then add either
asc
ordesc
to sort in ascending or descending order, respectively. Note: values are case sensitive on some servers. - Values:
AuthorID
(author name).
Category1
.
Category2
.
comments_count
.
custom_n
wheren
is the number of your custom field - for numeric values use(custom_n+0)
.
Expires
(expiry date).
ID
(article id#).
Image
(article image id#).
Keywords
.
LastMod
(date last modified).
LastModID
(author name of last modification).
Posted
(date posted).
rand()
(random).
Section
.
Status
.
Title
.
url_title
.
Each field in thetextpattern
database table can be used as a sort key. - When viewing a search results list,
score
(how well the search terms match the article) is available as an additional value. - Default:
Posted desc
(score desc
for search results). status="status"
- Restrict to articles with the specified
status
. - Values:
live
orsticky
. - Default:
live
. time="time"
v4.7.0+- Restrict to articles posted within specified timeframe.
- Values:
past
,future
,any
(bothpast
andfuture
) or a PHP-compatible date format. In the latter case,time
will be considered as the end date of the interval started bymonth
orexpired
attribute. - Default:
past
.
Note on ‘article list’ vs. ‘individual article’ context
The article tag is context-sensitive. It will produce different results depending on whether the page being viewed is an article list or an individual article. Article-list context includes the default (home) page, section landing pages, and category pages. Individual-article context applies on an article page (i.e. a page with a URL like https://example.com/archives/24/my-article
).
Examples
Example 1: Basic use as single tag
Here is the article tag responsible for the main content of the home page on a new Textpattern installation:
<txp:article limit="5" />
Calls the default
article form, which may contain any variation of article output you want to create. The default
form cannot be deleted; it is the form you see on first viewing the Forms panel.
Uses the limit
attribute to specify the maximum number of articles displayed in article list context (if not specified, this defaults to 10
).
Example 2: Specifying a form
Expanding on Example 1, here is the article
tag responsible for showing lists of articles by category in the default page of a new Textpattern installation:
<txp:article form="article_listing" limit="5" />
In article list context, the form named article_listing
will be processed and displayed for each article in the list. In individual article context, the default
form would be used.
To see this in action, on a new Textpattern install, from the home page select one of the category links near the bottom (right above the Comment link). Note the URL, similar to https://example.com/category/meaningful-labor
. The category
in the URL means this is a listing of articles by category. Here you see only the article title, posting date and article information (not the full article itself), because that is what is contained in the form named article_listing
. Now select the article title. Note the URL, similar to https://example.com/articles/1/welcome-to-your-site
. This is an individual article page. Once again you can see the full article, this time with comments showing (if comments are enabled).
Example 3: Offsetting article display
Continuing from the previous examples:
<txp:article listform="article_listing" limit="5" offset="2" />
Here we include the offset
attribute to offset article display by 2
articles. This means the five articles that will be displayed (i.e. limit="5"
) in article list context will begin with the third most recent article published in the site (the offset will not be applied in individual article context).
Why might you do it? Offsetting articles is useful in situations where the most recent article(s) are already accessible in some way and you don’t want them appearing again in normal article flow.
Example 4: Using pageby to split article output on a page
<div class="first">
<txp:article limit="1" pageby="10" />
</div>
<div class="middle">
<txp:article limit="8" offset="1" pageby="10" />
</div>
<div class="last">
<txp:article limit="1" offset="9" pageby="10" />
</div>
Another:
<txp:article limit="5" pageby="10" />
<!-- google ad -->
<txp:article limit="5" offset="5" pageby="10" />
The pageby
number should be the total number of articles displayed on the page. Without pageby
, each article tag would page independently based on its own limit
, as if it was the only article tag.
Example 5: Combined with custom fields
<txp:article colour="red" />
This code will display articles that have a custom field named colour
with a value red
.
Example 6: Article sorting
<txp:article sort="AuthorID asc, Posted desc" />
Uses the sort
attribute to define values by which to order article output. In this case two values are declared. AuthorID asc
first orders articles alphabetically by author names, then Posted desc
orders them by date published (desc
meaning newest to oldest).
Why might you do it? Sorting is a powerful way to group articles (e.g. by author), and/or give priority to articles most recently published (typically better for your website visitors).
Example 7: Build a <section />
-separated list of article titles grouped by section
Desired result:
<section id="about (section name)">
- About (section title)
- 1st Article from about section
- 2nd Article from about section
- …another article
</section>
<section id="family (section name)">
- Family (section title)
- 1st Article from family section
- 2nd Article from family section
- …another article
</txp:section>
- …and so on
Create the following Form named sections
:
<section id='<txp:section />'>
<h2>
<txp:section title />
</h2>
<+>
</section>
In Textpattern Page templates, add this tag to loop through all articles from all sections:
<txp:article sort="Section asc, Title asc" breakby="<txp:section />" breakform="sections">
<h3>
<txp:title />
</h3>
</txp:article>
Other tags used: section, title.
Example 8: Filter articles from the URL (v4.8.6+)
Adding <input>
elements to your page in an HTML <form>
allows you to search and filter articles by various parameters when the form is submitted. For example, you could send ?c=cat&keywords=some,keywords,list
to the URL and interpret it with this tag:
<txp:article match="category, keywords" />
Or, if you need to fine-tune, you can remap the key
URL parameter first by passing ?c=cat&key[]=some&key[]=keywords&key[]=list
and then interpreting it with:
<txp:article match="category1, keywords=key" />
Genealogy
Version 4.8.6
match="keywords"
added.
Version 4.7.2
breakform
attribute added, breakby
attribute modified.
Version 4.7.0
breakby
attribute added, exclude
attribute modified.
Version 4.6.0
exclude
and match
attributes added.
Version 4.0.7
Can be used as a container.
break
and wraptag
attributes added.
Version 4.0.4
sort
attribute added (replaces sortby
and sortdir
) attributes.
sortby
and sortdir
attributes deprecated.
Version 4.0.2
pageby
attribute added.