• 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 »
  • Displays the content extension of the Post/Item (the part after [teaserbreak]) more »
  • You can think of building a website with b2evolution CMS as opening a big box of Lego® bricks. There are many types of bricks included in the box. You are free to assemble them however you like to build the website that fits your needs… more »
  • Put file manifest.yaml in root of import folder or zip archive for additional rules. This file will be checked by the markdown importer and stop import if you are trying to import the some folder into the wrong collection. Sample: collection-urlname:… more »
  • This template tag displays the excerpt an Item. more »
  • Simulate Sending of Email $email_send_simulate_only Turn this on ($email_send_simulate_only = true;) to simulate email sends instead of really sending them through SMTP. This is useful if you are debugging a production database on a development machine.… more »
  • This screen displays the result of the execution of the next scheduled job in queue. This enables you to test b2evolution’s internal scheduler. However this is not how the scheduler should normally run. Note: you can also test in terminal/ssh with… more »
  • Included libraries are listed here... more »
  • /conf/_advanced.php includes advanced settings for b2evolution. more »
  • This template tag displays a link leading to the edit form where a user can edit the Post if he has edit rights. more »
  • This tag displays only the teaser part for a given Item. more »
  • 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 »
  • Display language name for item. Example <source lang="php"> $Item->language( $format = ‘htmlbody’ ); </source> Parameters <table border="1"> <tr> <th>Name</th> <th&… more »
  • 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 »
  • 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 »
  • 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 »
  • 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 »
  • 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 »
  • 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 »
  • 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>&#8217… more »
  • 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 »
  • 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 »
  • 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 »
  • 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 »
  • 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 »
  • Display link to publish a post if user has edit rights. Example <source lang="php"> $Item->publish_link( $before = ‘ ‘, $after = ‘ ‘, $text = ‘#’, $title = ‘#’, $class = ‘&#821… more »
  • Display priority of item. Example <source lang="php"> $Item->priority( $before = ‘’, $after = ‘’ ); </source> Parameters <table border="1"> <tr> <th>Name</th>… more »
  • 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 = &#82… more »
  • 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’ => &#8216… more »
  • 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 »