• If you have a personalized skin that worked well with the 0.9.2 ([http://prdownloads.sourceforge.net/evocms/b2evolution-0.9.2-2006-05-22.zip?download Sparkle]) release, this guide will show you what you need to do in order to make your skin work with th… more »
  • In order to use UTF-8 (UTF8) for your blog, basically, all that you have to do is go to [[Blogs_tab|Blog Settings]] > General and select the appropriate locale for your blog. The selected locale will set the languagen charset, country, flag and time… more »
  • ‘’This man page refers to b2evolution version 0.9.0.10, but should be applicable to most versions that support evoSkins‘’ This is useful if you want to integrate b2evolution into an existing site, and keep the same "look an… more »
  • The Templates tab is provided as a way to edit your ‘'’Custom skin”’ (as opposed to ‘’any other skin'’). This is ‘'’not the prefered way to edit”’, but it is provided as an option for peo… more »
  • The Technical Documentation is where you can find information about the code of b2evolution, extracted directly from the code itself but placed together in a readable and rich envrionment. It is useful to find events that your plugins can use, or inform… more »
  • This template tag displays a link to subscription screen Example <source lang="php"> user_subs_link( $before = ‘’, $after = ‘’, $link_text = ‘’, $link_title = ‘#’ ); </source>… more »
  • This template tag displays registration link. Example <source lang="php"> user_register_link( $before = ‘’, $after = ‘’, $link_text = ‘’, $link_title = ‘#’, $disp_when_logged_in = false… more »
  • This template tag displays a link to user profile. Example <source lang="php"> user_profile_link( $before = ‘’, $after = ‘’, $link_text = ‘’, $link_title = ‘#’ ); </source> Par… more »
  • This template tag displays link to logout Example <source lang="php"> user_logout_link( $before = ‘’, $after = ‘’, $link_text = ‘’, $link_title = ‘#’ ); </source> Parameters &… more »
  • This template tag displays link to login Example <source lang="php"> user_login_link( $before = ‘’, $after = ‘’, $link_text = ‘’, $link_title = ‘#’ ); </source> Parameters &lt… more »
  • This template tag returns the current skin URL. Example <source lang="php"> $Skin->get_url(); </source> Parameters This tag does not accept any parameters. Return value This function returns the current skin URL. more »
  • This template tag returns the current skin path. Example <source lang="php"> $Skin->get_path(); </source> Parameters This tag does not accept any parameters. Return value This function returns the current skin path. more »
  • This [[TemplateTags|template tag]] adds a widget container to the skin. This container can later be filled with all sorts of Widgets?. Example <source lang="php"> <?php // ———————… more »
  • Display "powered by b2evolution" logo. Example <source lang="php"> powered_by(); </source> Parameters This tag does not accept any parameters. Return value This tag displays content only, it does not have a ret… more »
  • This tag display plugin. Example The calendar plugin. Its code is evo_Calr. <source lang="php"> // Calendar plugin $Plugins->call_by_code( ‘evo_Calr’, array( ‘block_start’ => ‘&#821… more »
  • Display messages collected during single request execution. It can be ‘error’, ‘warning’ messages, and also ’success’ ones. Example <source lang="php"> <?php messages( array( ‘be… more »
  • Displays links to list pages. <source lang="php"> $MainList->page_links( array( ‘block_start’ => ‘ ‘, ‘block_end’ => ‘ ‘, ‘block_single’ => &#8… more »
  • Restore the locale in use before the switch (See [[tag_item_locale_temp_switch|$Item->locale_temp_switch();]]). This tag returns true on success, false on failure (no locale stored before). Example <source lang="php"> locale_rest… more »
  • This template tag returns or displays the current language. Example <source lang="php"> locale_lang( $disp = true ); </source> Parameters <table border="1"> <tr> <th>Name</th> <th… more »
  • This template tag returns or displays the charset of the current locale. Example <source lang="php"> locale_charset( $disp = true ); </source> Parameters <table border="1"> <tr> <th>Name</… more »
  • Display a phrase about the number of item views. Example <source lang="php"> $Item->views( $zero = ‘#’, $one = ‘#’, $more = ‘#’ ); </source> Parameters <table border="1"&g… more »
  • Links to previous and next post in single post mode. Example <source lang="php"> <?php item_prevnext_links( array( ‘block_start’ => ‘<table class="prevnext_post"><tr>’,… more »
  • This template tag checks if user is logged in. Example <source lang="php"> is_logged_in(); </source> Parameters This tag does not accept any parameters. Return value This function return true if a user is logged in. more »
  • Display message if there are no any posts. Example <source lang="php"> <?php display_if_empty( array ( ‘before’ => ‘<p class="msg_nothing">’, ‘after’… more »
  • Display credits. You can limit (and even disable) the number of links being displayed by its tag though the Admin interface: ‘Blog Settings > Advanced > Software credits’ Example <source lang="php"> // Display add… more »
  • This template tag displays allowed tags for comment. Example <source lang="php"> comment_allowed_tags( $format = ‘htmlbody’ ); </source> Parameters <table border="1"> <tr> <th>Nam… more »
  • Display tagline of the blog. This tagline can be edited by the blog owner in the admin interface under ‘Blog Settings > General > Tagline’. Example <source lang="php"> <?php $Blog->tagline( array(… more »
  • Display name of the blog. This name can be edited by the blog owner in the admin interface under ‘Blog Settings > General > Title’. Example <source lang="php"> <?php $Blog->name( array( ‘b… more »
  • Display long description of the blog. This long description can be edited by the blog owner in the admin interface under ‘Blog Settings > General > Long Description. Example <source lang="php"> <?php $Blog->longd… more »
  • Display a link to the current blog. This tag can display a link to the home if no blog is currently active or a link to a blog if there is an active blog. Example <source lang="php"> blog_home_link( $before = ‘’, $after… more »