Item Tags
-
Intro-Tag Item Type
Items of this type will be shown on your tag pages (disp_detail = posts-tag), depending on which tags you have assigned to this intro post. (This is unless there’s a more "recent" Intro-All post). Item Usage: Intro-TagMore » -
Tag Item Can Comment
This template tag checks if user can leave comment on this post or display error. Example <source lang="php"> $Item->can_comment( $before_error = ‘<p><em>’, $after_error = ‘</em></p>’…More » -
Tag Item Can Rate
This template tag checks if user can rate this post. Example <source lang="php"> // Return true if user can change rate, false if he/she cannot $Item->can_rate(); </source> Parameters This tag does not accept any param…More » -
Tag Item Can Recieve Pings
This template tag checks if item can receive pingbacks or trackbacks. Example <source lang="php"> $Item->can_receive_pings(); </source> Parameters This tag does not accept any parameters. Return value This function re…More » -
Tag Item Deadline Date
Display deadline date (datetime) of item. This tag is useful when workflow is turned on for a blog. Example <source lang="php"> $Item->deadline_date( $format = ‘’, $useGM = false ); </source> Parameters <…More » -
Tag Item Deadline Time
Display deadline time (datetime) of item. This tag is useful when workflow is turned on for a blog. Example <source lang="php"> $Item->deadline_time( $format = ‘’, $useGM = false ); </source> Parameters <…More » -
Tag Item Deprecate Link
Display link to deprecate a post if user has edit rights. This is probably only useful for the backoffice or for very advanced/specific uses. Example <source lang="php"> $Item->deprecate_link( $before = ‘ ‘, $after =…More » -
Tag Item Feedback Moderation
Displays feedback moderation link. Feedback includes comments, trackbacks & pingbacks. The tag can display how many non moderated feedbacks there are for an item. If there are not new feedback, which are not moderated by administrator, then it wil…More » -
Tag Item Language
Display language name for item. Example <source lang="php"> $Item->language( $format = ‘htmlbody’ ); </source> Parameters <table border="1"> <tr> <th>Name</th> <th&…More » -
Tag Item Locale Temp Switch
Temporarily switch to item’s locale. This is useful on multilingual blogs. It makes sure that added texts like "Read more" are translated to the post’s locale. Of course, it only works if the target language pack is loaded on the…More » -
Template Tag: Item Anchor
Display an anchor for permanent link to refer to. See [[tag_item_permanent_link|$Item->permanent_link();]]. <source lang="php"> $Item->anchor(); </source> Parameters This tag does not accept any parameters. Return v…More » -
Template Tag: Item Author
Displays the author/creator of Item. The tag can display not only the author/creator’s name but also their avatar.More » -
Template Tag: Item Background Image CSS
Gets the CSS property for the background image of the ItemMore » -
Template Tag: Item Categories
Displays a list of names of all the Categories associated with an Item.More » -
Template Tag: Item Category Name
Displays the name of the main Chapter/Category of the Item. Examples Quick Template Parameters This tag does not accept any parameters. Return value This tag displays content only, it does not have a return value.More » -
Template Tag: Item Content Extension
Displays the content extension of the Post/Item (the part after [teaserbreak])More » -
Template Tag: Item Content Teaser
This tag displays only the teaser part for a given Item.More » -
Template Tag: Item Contents Last Updated
This tag displays the contents last updated timestamp of an Item.More » -
Template Tag: Item Creation Time
This tag displays the creation time of an Item.More » -
Template Tag: Item Custom
Displays a custom field of the Post/Item.More » -
Template Tag: Item Custom Fields
Displays all Custom Fields of the Item as HTML code.More » -
Template Tag: Item Edit Link
This template tag displays a link leading to the edit form where a user can edit the Post if he has edit rights.More » -
Template Tag: Item Excerpt
This template tag displays the excerpt an Item.More » -
Template Tag: Item Extra Status
Display extra status of item. Example <source lang="php"> $Item->extra_status( $before = ‘’, $after = ‘’, $format = ‘htmlbody’ ); </source> Parameters <table border="1">…More » -
Template Tag: Item Feedback Feed Link
Displays link to the RSS or Atom feed for comments on this item. If there are no any comments in the item then it displays nothing. Example <source lang="php"> $Item->feedback_feed_link( $skin = ‘_rss2′, $before = …More » -
Template Tag: Item Feedback Link
This template tag displays a link to feedback to an Item. Feedback can include comments, trackbacks, pingbacks, and webmentions. The tag can display the number of feedbacks for an Item. The tag can show all feedbacks or only a specific type like just…More » -
Template Tag: Item Files
Display the attachments/files linked to the current item. Example <source lang="php"> <?php $Item->files( array( ‘before’ => ‘<ul class="bFiles">’, ‘be…More » -
Template Tag: Item Flag Icon
Displays a link button to flag the current Post/Item.More » -
Template Tag: Item Footer
This template tag displays a footer text below the Item. This footer text can be edited by the collection owner in the admin interface under Blog Settings > Advanced > Meta Data. Two different texts can be configured: One that displays in single…More » -
Template Tag: Item Has Feedback
This template tag checks if there is any feedback of a given type. Example <source lang="php"> <?php $Item->has_feedback( array( ‘type’ => ‘feedbacks’, ’status…More » -
Template Tag: Item History Link
Displays a link leading to the change history of the Post/Item.More » -
Template Tag: Item ID
Displays the Post/Item’s ID.More » -
Template Tag: Item Image URL
Displays the URL of the first image found in the Post/Item based on position.More » -
Template Tag: Item Images
Display the images linked to the current Post/Item. Example Quick Template PHP Template $Item->get_images( array( 'before' => '<div>', 'before_image' => '<div class="image_block">', 'before_image_legend' => '<div…More » -
Template Tag: Item Issue Date
To give an example, here is a question from the forum: ‘’Is there any way that I could add something so it shows as:'’ Day 331 of Week 48 Wednesday November, 28 2007 This is the answer: ‘’Find your skin, crack open ind…More » -
Template Tag: Item Issue Time
This tag displays the Post/Item’s issue date and/or time.More » -
Template Tag: Item Lang
Display language for item. Example <source lang="php"> $Item->lang(); </source> Parameters This tag does not accept any parameters. Return value This tag displays content only, it does not have a return value. Typica…More » -
Template Tag: Item Last Edit User
Displays the User who edited the Post/Item the last time.More » -
Template Tag: Item Last Touched
This tag displays the date/time when the Post/Item was last touched.More » -
Template Tag: Item Locale
Display locale for item. Example <source lang="php"> $Item->locale(); </source> Parameters This tag does not accept any parameters. Return value This tag displays content only, it does not have a return value. Typica…More » -
Template Tag: Item Locale Flag
Display locale flag image. Example <source lang="php"> <?php $Item->locale_flag( array( ‘before’ => ‘ ‘, ‘after’ => ‘ ‘,…More » -
Template Tag: Item Main Category
Display only main category name. Example <source lang="php"> $Item->main_category( $format = ‘htmlbody’ ); </source> Parameters <table border="1"> <tr> <th>Name</th> &…More » -
Template Tag: Item Mod Date
This displays the last modified date (datetime) of a Post/Item.More » -
Template Tag: Item Mod Time
Display last modified time (datetime) of item. Example <source lang="php"> $Item->mod_time( $format = ‘’, $useGM = false ); </source> Parameters <table border="1"> <tr> <th>Nam…More » -
Template Tag: Item More Link
This tag displays a "Read More" link for the Post/Item.More » -
Template Tag: Item Msgform Link
Display link to message form for this item’s author. Using this link you can send a message to the author. Example <source lang="php"> <?php $Item->msgform_link( array( ‘before’ => ‘…More » -
Template Tag: Item Msgform Link Assigned
This tag is useful when workflow is turned on for a blog. Example <source lang="php"> <?php $Item->msgform_link_assigned( $form_url, $before = ‘ ‘, $after = ‘ ‘, $text = ‘#’, $title = R…More » -
Template Tag: Item Page Links
This tag display links to pages for a multi-page Post/Item.More » -
Template Tag: Item Permanent Link
Displays a permanent link to the item.More » -
Template Tag: Item Permanent URL
Display permanent link for item. This actually only outputs the URL, to display a real link, use [[tag_item_anchor|$Item->permanent_link();]] Example <source lang="php"> $Item->permanent_url( $mode = ‘’, $blogurl='…More » -
Template Tag: Item Priority
Display priority of item. Example <source lang="php"> $Item->priority( $before = ‘’, $after = ‘’ ); </source> Parameters <table border="1"> <tr> <th>Name</th>…More » -
Template Tag: Item Propose Change Link
Displays a "propose change" link for the current Post/Item.More » -
Template Tag: Item Publish Link
Display link to publish a post if user has edit rights. Example <source lang="php"> $Item->publish_link( $before = ‘ ‘, $after = ‘ ‘, $text = ‘#’, $title = ‘#’, $class = ‘̵…More » -
Template Tag: Item Read Status
Displays a colored status icon indicating whether or not the Post/Item has been read by the current User.More » -
Template Tag: Item Refresh Contents Last Updated Link
Displays a link to refresh the "contents last updated date" of the Post/Item. This is useful mostly for forum administrators to reset the date in case some spam comments were deleted.More » -
Template Tag: Item Tags
Display tags associated with item. These tags can be edited using edit post form in ‘Tags’ field. Example <source lang="php"> $Item->tags( array( ‘before’ => ‘<div>Tags: ‘,…More » -
Template Tag: Item Title
Display item’s title and link to related URL. Example <source lang="php"> $Item->title( array( ‘before’ => ‘’, ‘after’ => ‘’, ‘format’…More » -
Template Tag: Item Trackback RDF
This tag inserts the RDF code necessary for automatic trackback discovery. WARNING: this will serve spam bots more than anything else! If you add this to your blog you’ll probably get 10 times more spam and normal users don’t really need th…More » -
Template Tag: Item Trackback URL
This tag displays the URL needed for other bloggers to send trackbacks to your blog. This tag does not display anythign if trackback is turned off in the blog settings. A trackback is one of three types of linkbacks, methods for Web authors to request…More » -
Template Tag: Item Type
Display type of item. Type can be one of the following values: Post, Page, Intro-Main, Intro-Cat, Intro-Tag, Intro-Sub, Intro-All, Podcast, Sidebar link. Example <source lang="php"> $Item->type( $before = ‘’, $after…More » -
Template Tag: Item Visibility Status
Display status of the Post/Item. Status can be one of the following: published, community, protected, review, private, draft, deprecated, redirected. Example Quick Template PHP Template $Item->get_format_status( array( 'template' => '<div…More » -
Template Tag: Item Visibility Status Raw
Display raw status of item. Status can be one of the following: published, deprecated, protected, private, draft. Also, see the following tag [[tag_item_status|$Item->status();]] Example <source lang="php"> <?php $Item->…More » -
Template Tag: Item Wordcount
Display the number of words in the post. Example <source lang="php"> $Item->wordcount(); </source> Parameters This tag does not accept any parameters. Return value This tag displays content only, it does not have a re…More »