This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

WP Biographia

Description

This plugin allows you to add a customisable biography to posts, to RSS feeds, to pages, to archives and to each post on your blog’s landing page as well as via a widget in your sidebar. It integrates out of the box with the information that can be provided in each user’s profile and supports custom post types. Display of the Biography Box can be hidden on a global or per user basis for posts, pages and custom post types as well as on a per category basis.

Settings and options include:

  1. Choose when to display a Biography Box; on the front page, in archives, on individual posts, pages, or any other custom post type and in RSS feeds.
  2. Choose the border style and background colour of the Biography Box
  3. Choose the amount of user profile information displayed in the Biography Box
  4. Choose the avatar image size
  5. Choose to display the Biography Box at the top or the bottom of content (universally)
  6. Choose to hide the display of the Biography Box for pages, posts and posts/pages on a per user basis
  7. Choose whether to display the Biography Box in the sidebar of your blog.

The plugin expands and enhances the Contact Info section of your user profile, adding support for Twitter, Facebook, LinkedIn, Google+, Delicious, Flickr, Picasa, Vimeo, YouTube and Reddit profile links as well as Yahoo! Messenger, AIM, Windows Live Messenger and Jabber/Google Talk instant messaging profiles. Your Contact Info links can then be displayed as part of the Biography Box, either as plain text links or as icon links. Further contact links can easily be added to the Biography Box by using the wp_biographia_contact_info and wp_biographia_link_items filters.

The position of the Biography Box can be controlled by the plugin’s supported settings and options, or manually via the plugin’s shortcode ([wp_biographia]) (see the Shortcode Support And Usage section for more information) or via template tags in your theme’s template files (see the Template Tags section for more information).

The position and content of the Biography Box, including adding support for new contact links, changing the content of the Biography Box when displayed via the shortcode, the format of the contact links and the overall format of the Biography Box can be modified by the plugin’s filters. See the Filter Support And Usage section for more information.

The plugin also supports displaying a reduced version of the Biography Box via a sidebar widget and provides a shorter, more terse, biography in the user’s Profile to prevent the full length biography text taking up too much space on the sidebar.

Shortcode Support And Usage

WP Biographia supports a single shortcode, [wp_biographia]. Adding this shortcode to the content of a post or page or into a theme template as content, expands the shortcode and replaces it with a Biography Box.

The shortcode also supports multiple attributes which allow you to customise the way in which the shortcode is expanded into the Biography Box:

  • the mode attribute
  • the user attribute
  • the author attribute (deprecated)
  • the role attribute
  • the order attribute
  • the prefix attribute
  • the name attribute
  • the type attribute

The “mode” Attribute

In raw mode, which is the default (specified as [wp_biographia mode="raw"] or simply as [wp_biographia]), the plugin inserts the Biography Box in you’ve asked for it, you’ve got it mode.

Or to put it another way, the plugin will honour the settings that you specify under Dashboard / Settings/ WP Biographia for Biography Box Style Settings and for Biography Box Content Settings but will ignore the Biography Box Display Settings and Biography Box Per User Settings.

In configured mode, specified as [wp_biographia mode="configured"], the plugin inserts the Biography Box and will honour all the settings under Dashboard / Settings / WP Biographia with the exception of Display On Front Page, Display On Individual Post, Display On Post Archives and Display On Individual Pages, as well as their equivalents for any custom post types you may have created.

The thinking behind this is that you probably want to honour post or page exclusions and per user exclusions, but by using the shortcode in your posts, you want to be in control of how and where the Biography Box is displayed.

The “user” Attribute

If the user attribute is omitted, which is the default, the shortcode assumes it’s being used within the WordPress Loop and will display the Biography Box once for the current post’s, page’s or custom post type’s user.

Specifying a user’s login name as the user attribute overrides this behaviour and allows multi-user sites to use the plugin to create a contributors page, where you use the shortcode as [wp_biographia user="login-name"] once for each of your site’s users that you want to appear, replacing "login-name" with a valid login name for one of your users.

You call also use the user attribute in wildcard mode, specifying the user’s login name as * as [wp_biographia user="*"]; this will then loop over all of the users that have logins on your site, displaying the Biography Box once for each user, ordered alphabetically by login name.

Specifying an invalid login name ([wp_biographia user="idontexist"]) will result in no Biography Box being displayed. Specifying an empty login name ([wp_biographia user=""]) will cause the user attribute to be ignored and may result in undefined behaviour, such as a partially populated Biography Box being displayed as the shortcode is being used outside of the Loop and thus no user information is made available to the plugin by WordPress.

The “author” Attribute

The author attribute is now deprecated in favour of the user attribute introduced in v3.2.0 of the plugin. If the author attribute is used and no user attribute is present, the author attribute will act in the same way as the user attribute, described above. If both the user and author attributes are present, the author attribute will be ignored in favour of the user attribute.

In other words, if you use the shortcode and supply both the author and user attributes, such as [wp_biographia author="foo" user="bar"], the Biography Box will be displayed for the user bar, not the user foo. Likewise, [wp_biographia user="*" author="foo"] will display the Biography Box in wildcard mode, not for the user foo.

Support for the author attribute will be likely be removed in a future release of the plugin to avoid confusion over the author and user attributes.

The “role” Attribute

Valid only when used in conjunction with the user attribute in wildcard mode, the role attribute allows you to filter the users that have user accounts on your blog according to their WordPress Role. The role attribute takes one or more comma separated arguments which define the WordPress role(s); at the time of writing, these can be one of:

  • administrator
  • editor
  • author
  • contributor
  • subscriber

For example, if you want to display the Biography Box for all users of your blog who have a role of author you can use the role attribute plus the author attribute in wildcard mode to do this, along the lines of [wp_biographia user="*" role="author"]. If you want to display the Biography Box for all users with a role of author or contributor, you can specify both roles, along the lines of [wp_biographia user="*" role="author,contributor"].

Specifying an invalid role ([wp_biographia user="*" role="foo"]) will result in no Biography Box being displayed. Specifying the role attribute without the user attribute in wildcard mode will have no effect.

The “order” Attribute

Valid only when used in conjunction with the user attribute in wildcard mode, the order attribute allows you to specify the display order for the users that have user accounts on your blog. The order attribute takes a single argument which defines the sorting order; at the time of writing, this can be one of:

  • account-name (the default)
  • first-name
  • last-name
  • nickname
  • display-name
  • login-id

For example, if you want to display the Biography Box for all users of your blog ordered according to their last name you can use the order attribute plus the author attribute in wildcard mode to do this, along the lines of [wp_biographia user="*" order="last-name"].

Specifying an invalid role ([wp_biographia user="*" order="foo"]) will result in the default account name sort order being used. Specifying the order attribute without the user attribute in wildcard mode will have no effect.

It’s important to note that the in order to successfully sort by first-name or by last-name, the First Name and/or Last Name fields must be populated in each user’s Profile; by default, these fields are not populated during the creation of a user’s WordPress account. The sorting of the user accounts when the order attribute is specified uses natural order string comparison, which means than an empty First Name or Last Name will appear before a First Name or Last Name which actually contains a value. If your WordPress site doesn’t have these name fields populated in your user’s Profiles, you may not see the sorting results you expect.

The “prefix” Attribute

If the prefix attribute is omitted, which is the default, the Biography Box will be displayed with Biography Prefix text configured in Settings/ WP Biographuia / Biography Box Content Settings before the user’s name. This can be overridden by using the prefix attribute, along the lines of [wp_biographia prefix="All About"].

The “name” Attribute

If the name attribute is omitted, which is the default, the Biography Box will be displayed with the user’s name as configured by User’s Name in Settings / WP Biographia /Biography Box Content Settings. This can be overriden by supplying one of the following for the name attribute’s argument:

  • account-name
  • first-last-name
  • nickname
  • display-name
  • none

The “type” Attribute

If the type attribute is omitted, which is the default, the Biography Box will be displayed with the user’s full biography text, taken from the Biographical Info field in the user’s profile. If the type attribute is specified with a value of full, this is equivalent to the default behaviour. If the type attribute is specified with a value of excerpt, the Biographical Excerpt field in the user’s profile will be used instead, providing the user has filled out this field in their profile. Specifying an invalid type attribute value ([wp_biographia type="foo"]) will result in the default behaviour of the full biography being used.

Filter Support And Usage

WP Biographia supports multiple filters, which are described in more detail below. The plugin’s filters allow you to:

  • change the default set of installation settings and options at plugin activation time
  • modify and/or enhance the set of contact information fields the plugin adds to the user’s profile
  • modify and/or enhance the contact links that are added to the Biography Box by the plugin
  • modify the position of the Biography Box to before or after the post content returned by the_content() and/or the_excerpt()
  • hide the display of the Biography Box entirely under user-defined circumstances
  • modify and/or enhance the Biography Box that is produced by the [wp_biographia] shortcode
  • modify and/or enhance the format and content of the contact links that are added to the Biography Box by the plugin
  • modify and/or enhance the Biography Box that is produced for an RSS feed
  • modify and/or enhance the entirety of the Biography Box

wp_biographia_default_settings

Applied to the default set of plugin settings and options. Note that this filter is called once, upon plugin activation, when there are no WP Biographia settings/options existing in the database.

Example: Add the date and time that the plugin was first activated

add_filter ('wp_biographia_default_settings', 'add_activation_timestamp');

function add_activation_timestamp ($options) {
    // options = array (option name => option value)
    $options['plugin_activation_timestamp'] = date (DATE_ATOM);

    return $options;
}

wp_biographia_contact_info

Applied to the default set of contact information fields that are added to an user’s profile by the plugin. Note that in order to add and display a new contact link to the Biography Box, the contact link must be added to the value returned by the wp_biographia_link_items filter as well as the value returned by this filter.

Example: Add Pinterest as a supported contact information field

add_filter ('wp_biographia_contact_info', 'add_pinterest_support');

function add_pinterest_support ($contacts) {
    // contacts = array (field => array (field => field-name, contactmethod => description))
    $contacts['pinterest'] = array (
        'field' => 'pinterest',
        'contactmethod' => __('Pinterest')
    );

    return $contacts;
}

wp_biographia_link_items

Applied to the default set of contact links that are added to the Biography Box by the plugin. Note that in order to add and display a new contact link, the contact information field must be added to the value returned by the wp_biographia_contact_info filter as well as the value returned by this filter. Note that $icon_dir_url will by default contain the URL of the images directory within the plugin directory, which will look something like /wp-content/plugins/wp-biographia/images/ (the trailing slash is important). If an alternate icon directory has been specified in the plugin’s settings and options, then $icon_dir_url will contain this alternate, configured, directory URL. If the icon you want to add for a new contact link doesn’t reside in the directory URL mentioned previously, you’ll need to set $icon_dir_url to point to your own custom location.

Example: Add Pinterest as a supported contact link in the Biography Box

add_filter ('wp_biographia_link_items', 'add_pinterest_link', 2);

function add_pinterest_link ($links, $icon_dir_url) {
    // links = array (field => array (link_title => title, link_text => text, link_icon => URL)
    $links['pinterest'] = array (
        'link_title' => __('Pinterest'),
        'link_text' => __('Pinterest'),
        'link_icon' => $icon_dir_url . 'pinterest.png'
        );

        return $links;
}

wp_biographia_pattern

Applied to the format string used to position the Biography Box before the post content or after the post content that is returned by the_content() and/or the_excerpt().

Example: Insert a header between post content and Biography Box

add_filter ('wp_biographia_pattern', 'insert_biography_header');

function insert_biography_header ($pattern) {
    return '%1$s<p class="biography-header">About The User</p>%2$s';
}

wp_biographia_pre

Allows display of the Biography Box to be hidden under user-defined circumstances. This only affects the display of the Biography Box that is configured via the plugin’s admin screen or via the shortcode in configured mode.

Example: Hide the Biography Box

add_filter ('wp_biographia_pre', 'hide_biography_box');

function hide_biography_box ($flag) {
    return true;
}

wp_biographia_shortcode

Applied to the current instance of the Biography Box that is produced via the [wp_biographia] shortcode.

Example: Apply shortcode specific CSS to the Biography Box

add_filter ('wp_biographia_links', 'add_shortcode_css', 10, 2);

function add_shortcode_css ($content, $params) {
    // params = array (mode => shortcode-mode, user => author-id, prefix => prefix-string,
                        name => name-option)

    return '<div class="custom-shortcode-css">' . $content . '</div>';
}

wp_biographia_content_title

Applied to the title of the Biography Box.

Example: Override the name prefix for all uses of the Biography Box.

add_filter ('wp_biographia_content_title', 'override_name_prefix', 10, 3);
function override_name_prefix ($content, $name_prefix, $formatted_name) {
    return 'This is ' . $formatted_name;
}

wp_biographia_links

Applied to the formatted set of contact links for the current instance of the Biography Box.

Example: Replace the default text link separator character (the pipe symbol “|”) with a dash (“-“).

add_filter ('wp_biographia_links', 'replace_link_separator', 10, 3);

function replace_link_separator ($content, $links, $params) {
    // links = array (link-item)
    // params = array (glue => separator-string, class => link-item-css-class-name,
    //                  prefix => links-prefix-html, postfix => links-postfix-html)

    return str_replace ($params['glue'], ' - ', $content);
}

Example: Wrap the formatted content links in an additional HTML div.

add_filter ('wp_biographia_links', 'wrap_links', 10, 3);

function wrap_links ($content, $links, $params) {
    // links = array (link-item)
    // params = array (glue => separator-string, class => link-item-css-class-name,
    //                  prefix => links-prefix-html, postfix => links-postfix-html)

    $new_prefix = '<div class="custom-link-class">' . $params['prefix'];
    $new_postfix = $params['postfix'] . '</div>';

    return $new_prefix . implode ($params['glue'], $links) . $new_postfix;
}

wp_biographia_link_item

Applied to each active contact link, in the order in which they are processed by the plugin.

Example: Force all links that point to the current site to open in a new window.

add_filter ('wp_biographia_link_item', 'filter_link_item', 10, 2);

function filter_link_item ($content, $params) {
    // $params = array (
    //      'type' => 'link type (icon|text)',
    //      'format' => 'link format string',
    //      'meta' => 'additional anchor attributes',
    //      'title' => 'link title',
    //      'url' => 'link URL',
    //      'body' => 'link body text',
    //      'link-class' => 'link CSS class name',
    //      'item-class' => 'link item CSS class name (icons only)'
    //  );

    $site_url = site_url ();
    $pos = strpos ($params['url'], $site_url);
    if ($pos !== false) {
        $params['meta'] = 'target="_blank"';
    }

    if ($params['type'] === 'icon') {
        $content = sprintf ($params['format'], $params['url'], $params['meta'], $params['title'], $params['link-class'], $params['body'], $params['item-class']);
    }

    else {
        $content = sprintf ($params['format'], $params['url'], $params['meta'], $params['title'], $params['link-class'], $params['body']);
    }

    return $content;
}

wp_biographia_feed

Applied to the current instance of the Biography Box that is produced via the site’s RSS feed.

Example: Apply RSS feed specific CSS to the Biography Box

add_filter ('wp_biographia_feed', 'add_feed_css');

function add_feed_css ($content) {
    return '<div class="custom-feed-css">' . $content . '</div>';
}

wp_biographia_biography_box

Applied to the entire content of the current instance of the Biography Box.

Example: Remove all WP Biographia CSS classes commencing wp-biographia- and replace them with custom CSS classes that adhere to the plugin’s CSS class naming convention.

add_filter ('wp_biographia_biography_box', 'replace_css_classes', 10, 2);

function replace_css_classes ($biography, $items) {
    $new_content = array ();

    foreach ($items as $item) {
        $new_content[] = str_replace ('wp-biographia-', 'custom-', $item);
    }

    return implode ('', $new_content);
}<h3>Template Tags</h3>

WP Biographia supports two template tags that can be used in your theme’s template files. These are described in more detail below; for a full description of the use of each tag’s argument, see the Shortcode Support And Usage section. The plugin’s tags allow you to:

  • produce the Biography Box and assign the HTML for the Biography Box to a string.
  • produce the Biography Box and echo the results immediately.

wpb_get_biography_box

Description: Retrieves the Biography Box. This template tags renders the Biography Box and returns it to the caller as a string. To display the Biography Box immediately, use the wpb_the_biography_box template tag.

Usage:

<?php $biography_box = wpb_get_biography_box ($mode, $user, $prefix, $name, $role, $type, $order); ?>

Parameters:

  • $mode – (string) (optional) Override the Biography Box mode (raw|configured). Default: raw.
  • $user – (string) (optional) Override the source user (login-name|*). Default: the current user’s login name.
  • $prefix – (string) (optional) Override the Biography Box title prefix. Default: use the plugin’s settings.
  • $name – (string) (optional) Override the selected user’s name format (account-name|first-last-name|nickname|display-name|none). Default: use the plugin’s settings.
  • $role – (string) (optional) Override the selected user’s role when used in wildcard mode. Specify one or more of the following, as a comma separated list (administrator|editor|author|contributor|subscriber). Default: none.
  • $type – (string) (optional) Override the type of the biography text (full|excerpt). Default: use the plugin’s settings.
  • $order – (string) (optional) Override the sort order when used in wildcard mode (account-name|first-name|last-name|nickname|display-name|login-id). Default: account-name.

wpb_the_biography_box

Description: Displays the Biography Box. This template tags renders the Biography Box and displays it immediately. To get the current Biography Box as a string, use the wpb_get_biography_box template tag.

Usage:

<?php wpb_the_biography_box ($mode, $user, $prefix, $name, $role, $type, $order); ?>

Parameters:

  • $mode – (string) (optional) Override the Biography Box mode (raw|configured). Default: raw.
  • $user – (string) (optional) Override the source user (login-name|*). Default: the current user’s login name.
  • $prefix – (string) (optional) Override the Biography Box title prefix. Default: use the plugin’s settings.
  • $name – (string) (optional) Override the selected user’s name format (account-name|first-last-name|nickname|display-name|none). Default: use the plugin’s settings.
  • $role – (string) (optional) Override the selected user’s role when used in wildcard mode. Specify one or more of the following, as a comma separated list (administrator|editor|author|contributor|subscriber). Default: none.
  • $type – (string) (optional) Override the type of the biography text (full|excerpt). Default: use the plugin’s settings.
  • $order – (string) (optional) Override the sort order when used in wildcard mode (account-name|first-name|last-name|nickname|display-name|login-id). Default: account-name.

Screenshots

  • Settings and Options: Display Tab
  • Settings and Options: Admin Tab – New User Settings
  • Settings and Options: Admin Tab – User Profile Settings
  • Settings and Options: Admin Tab – Content and Excerpt Settings
  • Settings and Options: Admin Tab – Biography Box Override Settings
  • Settings and Options: Exclusions Tab – Post, Page and Custom Post Type Exclusion and Category Exclusion Settings
  • Settings and Options: Exclusions Tab – User Hiding Settings
  • Settings and Options: Style Tab
  • Settings and Options: Content Tab
  • Settings and Options: Content Tab, continued
  • Settings and Options: Defaults Tab
  • Settings and Options: Colophon Tab – Colophon
  • Settings and Options: Colophon Tab – Plugin Configuration Settings
  • Post Install and Upgrade: What’s New Pointer
  • Plugin Tour Pointer: Display Tab
  • Plugin Tour Pointer: Admin Tab
  • Plugin Tour Pointer: Exclusions Tab
  • Plugin Tour Pointer: Style Tab
  • Plugin Tour Pointer: Content Tab
  • Plugin Tour Pointer: Defaults Tab
  • Plugin Tour Pointer: Colophon Tab
  • Settings and Options: Contact link verification in a user’s profile
  • Edit Post: Biography Box Post Options meta-box
  • Sample Biography Box; Contact links shown as text
  • Sample Biography Box; Contact links shown as icons
  • Widget Settings and Options
  • Sample Widget Output

Installation

  1. You can install WP Biographia automatically from the WordPress admin panel. From the Dashboard, navigate to the Plugins / Add New page and search for “WP Biographia” and click on the “Install Now” link.
  2. Or you can install WP Biographia manually. Download the plugin Zip archive and uncompress it. Copy or upload the wp-biographia folder to the wp-content/plugins folder on your web server.
  3. Activate the plugin. From the Dashboard, navigate to Plugins and click on the “Activate” link under the entry for WP Biographia.
  4. Enhance your WordPress user profile. From the Dashboard, navigate to Users and click on the “Edit” link under your profile.
  5. Edit your WordPress user profile. Add your biography to the “Biographical Info” text box. WP Biographia also adds to the list of Contact Info you can associate with your profile, adding support for Twitter, Facebook, LinkedIn and Google+ and other contact profiles. Click on the “Update Profile” link to save your changes.
  6. Customise and configure what information WP Biographia displays; From the Dashboard, navigate to the Settings / WP Biographia page or click on the “Settings” link from the Plugins page on the Dashboard.
  7. You can can control display settings, style settings and content settings for the Biography Box.
  8. Click on the “Save Changes” button to preserve your chosen settings and options.
  9. If you enable the display of the post user’s image, make sure avatar support is turned on; from the Dashboard, navigate to Settings / Discussion and ensure that Show Avatars is enabled. Don’t forget to save your changes.
  10. Users with the manage_options capability can edit their profile via Users / Your Profile from the Dashboard to hide the display of the Biography Box on posts and/or on pages and also the profiles of other users via the Users / All Users / Edit from the Dashboard.
  11. Hiding of the display of the Biography Box on posts and/or on pages can also be configured from the Dashboard; navigate to Settings / WP Biographia / Biography Box Display Settings and click on the Exclusions tab.

FAQ

How do I get help or support for this plugin?

In short, very easily. But before you read any further, take a look at Asking For WordPress Plugin Help And Support Without Tears before firing off a question. In order of preference, you can ask a question on the WordPress support forum; this is by far the best way so that other users can follow the conversation. You can ask me a question on Twitter; I’m @vicchi. Or you can drop me an email instead. I can’t promise to answer your question but I do promise to answer and do my best to help.

Is there a web site for this plugin?

Absolutely. Go to the WP Biographia home page for the latest information. There’s also the official WordPress plugin repository page and the source for the plugin is on GitHub as well.

I’ve configured WP Biographia to display the user’s image but it’s not working; what’s happening here?

User profile pictures, or avatars, are part of the WordPress core but enabling them isn’t done at the level of the user profile, instead it’s part of the way in which comments are configured. If you enable the display of the post user’s image, make sure avatar support is turned on; from the Dashboard, navigate to Settings / Discussion and ensure that Show Avatars is enabled. WordPress uses the email address that is part of your user’s profile to look up the right avatar image from gravatar.com, so you need to ensure that you’re using the same email address on your site as well as for your avatar.

I want to upload my user’s images, host them on my web server and not use Gravatars; how do I do this?

WP Biographia uses the get_avatar pluggable function to output the user’s avatar image. Theoretically, any plugin that supports locally hosted avatar images and which overrides the default WordPress implementation of get_avatar should be able to be used. In practice, whether this approach will work for you or not depends on the combination of the theme you’re using and the interactions that the other plugins that you’re using has with the WordPress core and with your theme. The Simple Local Avatars plugin plugs get_avatar and cooperates nicely with WP Biographia, at least in my local testing environment; your mileage may vary.

I’ve configured WP Biographia to show my website/Twitter/Facebook/etc links but I don’t see them in the Biography Box; where do I define these links?

WP Biographia adds a number of social media and web link fields to your WordPress user profile; from the Dashboard, navigate to Users / Your Profile and enter the links you want displayed to the fields in the Contact Info section.

I’ve installed and configured WP Biographia and now I see not one but two differing Biography Boxes; what’s going on?

There’s probably one of two things going on here. Firstly, you’ve already got another plugin that makes a Biography Box installed and active and this plugin, as well as WP Biographia, are doing their job properly. Secondly, the theme you’re using hard codes a Biography Box into the theme templates. Both the TwentyTen and TwentyEleven themes supplied as part of a standard WordPress install do this.

I only want to show the Biography Box for certain users and not for others; can I do this?

WP Biographia allows you to hide the Biography Box from being displayed on a per user basis. You can hide for posts only, for pages only or for both posts and pages. There’s two ways of configuring this. If your user has the manage_options capability, you can choose the degree of hiding, if any, from your user profile or for any other user’s profile; from the Dashboard, navigate to Users and check the Hide From Posts and/or Hide From Pages checkbox options. You can also configure this easily from the plugin’s Settings And Options; from the Dashboard, navigate to the Settings / WP Biographia page, click on the Exclusions tab and under User Hiding Settings, add and/or remove the users to fit your model of who should have the Biography Box displayed.

I want to show the Biography Box for all users but only for certain categories; can I do this?

From the Dashboard, navigate to the Settings / WP Biographia page, click on the Exclusions tab and under Category Exclusion Settings, add and/or remove the categories to fit your model of when the Biography Box should be displayed.

How do I add HTML to the Biographical Info section of a user’s profile?

In previous releases of the plugin, I’ve recommended that you add this code to your theme’s functions.php file:

remove_filter('pre_user_description', 'wp_filter_kses');

But as WebEndev helpfully pointed out on the WordPress forums, this allows all HTML to be added to the Biography Info section of a user’s profile, which may be going too far. The following code, in your theme’s functions.php, will allow line breaks to be honoured but filter out any HTML tags and attributes which are not allowed by the $allowedposttags WordPress global.

remove_filter('pre_user_description', 'wp_filter_kses');
add_filter('pre_user_description', 'wp_filter_post_kses');
add_filter('pre_user_description', 'wptexturize');
add_filter('pre_user_description', 'wpautop');
add_filter('pre_user_description', 'convert_chars');
add_filter('pre_user_description', 'balanceTags', 50);

How do I remove the bio on pages using page templates?

Add this code to your theme’s functions.php file:

add_action ('wp_head', 'remove_user_box_page_template');

function remove_user_box_page_template() {
  if (is_page_template ('page_blog.php'))
        add_filter ('wp_biographia_pattern' , 'content_only_pattern');
}

function content_only_pattern($pattern) {
    return '%1s';
}

I want to use my own icon set for my user’s contact links; how do I do this?

Firstly select the icon set you want to use. You’ll need to ensure that the icon files are in .png format and are named to match the icon set that WP Biographia ships with; take a look in wp-biographia/images to see the naming convention. Upload your icon set to your web server and note the URL (not the local path) to where your icons will live. Navigate to Settings / WP Biographia and click on the Content tab, ensure that the Use Alternate Icon Set option is checked and the URL to your alternate icons is specified in the Alternate Icon Set URL text box. By default, WP Biographia sizes the contact link icons at 32×32 pixels; you can override this in your local CSS file by redefining the .wp-biographia-item-icon CSS class (see wp-biographia/css/wp-biographia.css).

You can also override the icon file name and source URL on a per contact link basis via the $icon_url_dir parameter via the wp_biographia_link_items filter.

So to recap, the plugin uses its own default set of icons, followed by the Alternate Icon Set URL to allow you to point to an entire alternate set of icons, if the supplied ones aren’t to your liking, followed by link specific overrides via the wp_biographia_link_items filter. The order of precedence looks something like …

  1. the plugin’s icon set – for all icons – typically this is /wp-content/plugins/wp-biographia/images.
  2. the alternate icon set – for all icons (even added via the filter, if no override takes place on $icon_url_dir)
  3. an override of the icon set URL for the single contact method you’re adding via wp_biographia_link_items (assuming it’s also added via wp_biographia_contact_info)

See the Filter Support And Usage section for more information on the plugin’s filters.

I want to change the CSS used to format the Biography Box; how do I do this?

The HTML and CSS classes that the plugin emits follows a consistent structure and naming convention. See Hacking WP Biographia’s Appearance With CSS for more information.

I’ve changed the Biography Box CSS but my changes aren’t showing up; what’s happening?

WP Biographia uses minified CSS files to improve the speed at which a page loads. If you make changes to the plugin’s CSS in /wp-content/plugins/wp-biographia/css/wp-biographia.css the plugin will still load the minified version in /wp-content/plugins/wp-biographia/css/wp-biographia.min.css. So if you make any site specific changes to the plugin’s CSS, which isn’t recommended (see Hacking WP Biographia’s Appearance With CSS), you’ll need to ensure you (re)minify the master CSS to get the changes to be picked up by the plugin.

WP Biographia doesn’t support social network FOO; can you add this to the next version?

Yes. But also no. One of the wonderful things about today’s web is the vast amount of ways we have to interact with each other. I can’t keep up. No, really. In practical terms, this would mean that the plugin’s settings and options panels would soon get out of hand, plus the overhead of adding, testing and releasing a new version of the plugin would get out of hand before the settings and options do. But … see the next FAQ for the answer.

WP Biographia doesn’t support social network or contact method BAR; how can I add this?

With the cunning use of the filters that WP Biographia supports, you can add support for as many social networks and/or contact methods as you like. You’ll need to do two things for each link you want to add to the plugin.

  1. In your theme’s functions.php add support for the new link to the user’s profile by way of the wp_biographia_contact_info filter.
  2. Still in your theme’s functions.php add support for the new link to be displayed, with an icon if you wish, via the wp_biographia_link_items filter.

See the Filter Support And Usage section for a working example of these two filters to add support for a new contact link.

The “More Posts” link in the Biography Box links to my site’s landing page and not an author’s archive page; what’s happening?

If you’re using an SEO plugin, this might be optimising out the More Posts link. Specifically, Yoast’s WordPress SEO plugin has this side effect as this plugin allows you to enable/disable author archive pages. Thankfully, the SEO plugin has a setting called Disable Author Archives that, if disabled, allows WP Biographia to successfully link to an author’s archive page.

The Biography Box is showing up in places it shouldn’t; such as the footer or within widgets in the sidebar; why is this happening and how can I stop this?

Why is this happening? Some themes or plugins use the WordPress the_content and/or the_excerpt filters as part of a secondary query to select posts or pages to show as content in the theme’s sidebars, footers or as part of a plugin’s widget. As WP Biographia also uses these filters to add the Biography Box, this means that the Biography Box can sometimes show up unexpectedly, in places where it shouldn’t be.

How can I stop this? You can lock the plugin to run only in the context of the main WordPress Loop; in other words, WP Biographia will run when selecting posts or pages to be displayed on your site’s landing page, archive pages or any other template, but not when run in the context of a secondary query loop in a sidebar or footer. From the Dashboard, navigate to Settings / WP Biographia / Admin / Content And Excerpt Settings and ensure that the Lock Display Of The Biography Box To The Main Loop setting is checked.

My site features guest posts; can I override my contributor account’s biography for each of my guest authors?

Yes. Firstly you’ll need to enable post specific overrides in the plugin. From the Dashboard, navigate to Settings / WP Biographia / Admin / Biography Box Override Settings and ensure that the Enable Post Specific Overrides setting is checked.

Now edit a post or a page. In the Biography Box Post Options meta-box (for posts), or the Biography Box Page Options meta-box (for pages), you’ll find that four new settings are now visible.

  • Override Biography Text For This Post – checking this setting will show a text box, pre-populated with the currently logged in user’s biography, which can be overriden. If you want to revert to the currently logged in user’s biography, clicking on the Reload Default Profile Biography will reset your changes.
  • Override Biography Title For This Post – checking this setting will show a text box that can be used to override the default Biography Box title.
  • Suppress Avatar For This Post – checking this setting will stop the post or page’s author’s avatar from being displayed as part of the Biography Box.
  • Suppress Contact Links For This Post – checking this setting will stop the contact links being displayed as part of the Biography Box.

All of the above settings are post or page specific; in other words they will only override the post or page that is currently being edited.

The thinking behind these settings is that if you have guest posts, you’ll probably have one or more accounts with a contributor role. That account’s biography text, avatar or contact links won’t make much sense in the context of a guest post, so you can override them or suppress them in a way which does not impact the Biography Boxes produced for other users on your site.

WP Biographia isn’t available in my language; can I submit a translation?

WordPress and this plugin use the gettext tools to support internationalisation. The source file containing each string that needs to be translated ships with the plugin in wp-biographia/lang/src/wp-biographia.po. See the I18n for WordPress Developers page for more information or get in touch for help and hand-holding.

This plugin looks very much like the WP About Author; what’s the connection?

Version 1 of WP Biographia was inspired by and based on the WP About Author plugin by Jon Bishop. Thanks and kudos must go to Jon for writing a well structured, working WordPress plugin released under a software license that enables other plugins such as this one to be written or derived in the first place. Jon’s written other WordPress plugins as well; you should take a look.

I want to amend/hack/augment this plugin; can I do the same?

Totally; like the original plugin by Jon, this plugin is licensed under the GNU General Public License v2 (GPLV2). See https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt for the full license terms.

Where does the name WP Biographia come from?

WP Biographia is named after the etymology of the modern English word biography. The word first appeared in the 1680s, probably from the latin biographia which itself derived from the Greek bio, meaning “life” and graphia, meaning “record” or “account” which derived from graphein, “to write”.

Reviews

September 3, 2016
Hello, The plugin is a perfect tool for those who want to add a blurb at the bottom of their articles. Installation is simple, but many options are available. I use it in the simplest version and it works perfectly! To add a picture in the statement insert, I have associated with the plugin “avatar”. I use the latest version of WP 4.3.1 – My website is https – I use the plugin for several months and I have no problem. Thank you for development.
Read all 22 reviews

Contributors & Developers

“WP Biographia” is open source software. The following people have contributed to this plugin.

Contributors

Translate “WP Biographia” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

The current version is 4.0.0 b1 (2018.12.20)

4.0.0 b1

  • Released 2018.12.20
  • Fixed: Updated plugin widget to use the correct base class constructor.
  • Added: Support for Instagram and GitHub profile links.
  • Added: New updated icon set.
  • Other: Updated plugin to support WordPress 5.0 (Bebo Valdés) including the Gutenberg editor.
  • Other: Remove support for obsoleted services; Google+, Delicious, Picasa, Yahoo! IM, AIM, MSN Messenger and Jabber.
  • Other: Changed default biographt box background color to white.
  • Other: Refactored plugin directory layout to reflect WordPress best practice (https://developer.www.ads-software.com/plugins/the-basics/best-practices/)

3.3.2

  • Released 2013.10.25
  • Fixed: After upgrading to WordPress 3.7, all posts are considered to be excluded by category due to an apparent change in WP 3.7’s handling of categories (exposed via the plugin’s use of in_category). The plugin now checks for a non empty set of category exclusions before checking
    the post for a category.

3.3.1

  • Released 2012.12.18
  • Fixed: Ensure the non-minified versions of the plugin’s CSS and JS files are enqueued if WP_DEBUG or WPBIOGRAPHIA_DEBUG are defined and set to true.
  • Other: Updated and tested to ensure compatibility with WordPress v3.5 “Elvin Jones”.

3.3

  • Released 2012.10.25
  • Added: wp_biographia_content_title filter; allow the Biography Boxes’s title to be changed.
  • Added: Support for sites using the Simple Local Avatars plugin. If installed/active use the simple_local_avatars filter to fixup the avatar’s CSS; hook into both simple_local_avatars and get_avatars to support site with mixed Gravatars and locally hosted avatars.
  • Added: Support for the shortcode’s order attribute; allow custom sort orders when in wildcard mode.
  • Added: Support for post specific Biography Box overrides.
  • Added: Two new template tags: wpb_get_biography_box and wpb_the_biography_box.
  • Added: Multiple, comma separated, roles can now be specified for the shortcode and template tags.
  • Added: Support for enabling/disabling contact links in the user’s profile, in the Admin and Display tabs and when rendering the Biography Box.
  • Added: 5px spacing between contact link icons to support custom icon sets with no border.
  • Added: The contact links in a user’s profile are now validated to check that they are valid URLs; an admin error message is now displayed if a link is deemed to be invalid.
  • Added: Support for displaying the full or excerpt biography text.
  • Added: The display of the Biography Box can now be locked to the main WordPress Loop to prevent it being displayed in the sidebar or when the_content or the_excerpt are used as part of themes or other plugins.
  • Added: The colour of the Biography Box border can now be selected from the plugin’s Style tab.
  • Added: wp_biographia_link_item filter; allow the constituent elements of each contact link to be overriden.
  • Added: The visibility of all user profile Biography Options (biography excerpt, hide on posts, hide on pages) are now controlled by the Admin User Profile Settings.
  • Fixed: The dismissed pointers flag is now removed for each user when the plugin is uninstalled.
  • Fixed: The Biography Box is now styled correctly when no avatar image is present.
  • Fixed: Shortcode and template tag roles are now validated against $wp_roles and not against a hard-coded roles list.
  • Fixed: Bug which hid the Display On Individual Pages setting on the Display tab when Display On All Post Archives was checked.
  • Fixed: The contact links in the Biography Box now align with the left hand edge of the biography text.
  • Other: Moved all support source files into the includes directory.
  • Other: Ensure plugin source files are being invoked within the context of the plugin itself, otherwise die.
  • Other: The non-minified versions of the plugin’s CSS and JS files and now enqueued if WP_DEBUG is set to true or if WPBIOGRAPHIA_DEBUG is defined.
  • Other: Cleaned up wording for the biography section of a user’s profile; repurposed the shorter biography text box to be the biography excerpt for use by the shortcode, template tags, widget and biography selection settings.

3.2.1

  • Released 2012.07.31
  • Added: Stopped other themes and/or plugins overriding the size of the contact links icons via the !important CSS specifier.
  • Fixed: Fixed bug that caused the Biography Box to be duplicated in some RSS feeds.

3.2

  • Released 2012.07.23
  • Added: Support for synchronising the use of wpautop via the the_content and the_excerpt filters to ensure these filters fire before the Biography Box is produced when the plugin’s filter priority is less than the default filter priority to avoid formatting issues for contact links.
  • Added: Support for WordPress Pointers to display “what’s new” information post install or upgrade and to provide a “guided tour” of the plugin’s settings and options.
  • Added: Support for displaying the Biography Box as a widget.
  • Added: Support for a shorter biography to the user’s profile to be used in conjunction with the Biography Box widget.
  • Added: Support to display the Biography Box for all types of archive page; author, category, date and tag.
  • Added: Custom meta boxes to the post/page/custom-post creation/editing screens to hide the Biography Box, making it easier to define the Admin screen’s Exclusion settings.
  • Added: Support for the shortcode’s user attribute; deprecating support for the author attribute.
  • Added: Increased the width of text and select boxes for the Admin and Exclusion admin tabs to allow for longer category names and longer lists of post IDs to be displayed.
  • Added: Wrap the plugin’s avatars (if present) in plugin specific CSS code to prevent theme specific CSS bleeding into the Biography Box.
  • Fixed: The layout of the Biography Box for feeds now ignore displaying contact links as icons and formats them as plain text.
  • Fixed: Example use of the wp_biographia_feed filter in readme.txt.
  • Fixed: Bug where the wp_biographia_feed filter was never called in the context of a feed.
  • Fixed: Formatting of HTML for the Biography Box post/page hiding options in the user’s profile.
  • Fixed: Use the term “hide” consistently across the plugin and documentation; previous versions used “hide” and “suppress” interchangeably.
  • Fixed: Use the term “user” consistently across the plugin and documentation; previous versions used “author” and “user” interchangeably.
  • Fixed: Bug where the last page of a multiply paged post was not correctly detected, resulting in the Biography Box being displayed for all pages.

3.1

  • Released 2012.05.03
  • Added: Support for shortcode role attribute to further filter display of users when the shortcode is used in wildcard mode.
  • Added: The Colophon tab in the admin settings screen now displays a dump of the plugin’s setting and options without the need to extract that information from the database via MySQL or phpMyAdmin.
  • Added: New Admin tab in the admin settings screen. This allows a suitably permissioned administrator to hide the Biography Box settings from a user’s profile according to the user’s role and to automatically hide display of the Biography Box for newly created users according to that user’s role.
  • Added: Introductory help text to each post-box in each tab in the admin settings screen.
  • Added: The filter priorities for both the_content and the_excerpt can now be individually defined to cope with priority clashes with other themes and plugins which use these filters.
  • Fixed: Bug where the wp_biographia_category_exclusions setting was not defined in the database upon plugin upgrade, causing an undefined index notice message when the PHP error reporting level is set to E_NOTICE.
  • Fixed: Bug in settings initialisation; post_exclusions, global_post_exclusions and page_exclusions are now pre-defined and initialised correctly on both install and upgrade.

3.0.1

  • Released 2012.04.20
  • Fixed: Bug in plugin initialisation that incorrectly named the Vimeo content display option.
  • Fixed: Bug that caused a post’s user not to be refreshed in the front page and archive pages.
  • Fixed: Bug that caused a post’s user to be determined as the user of the enclosing page where a custom Loop is being used.

3.0

  • Released 2012.04.11
  • Summary: A substantial rewrite of the plugin’s structure with a reworked tabbed admin interface and substantial customisation options via the WordPress filter mechanism.
  • Added: Filter wp_biographia_default_settings
  • Added: Filter wp_biographia_contact_info
  • Added: Filter wp_biographia_link_items
  • Added: Filter wp_biographia_pre
  • Added: Filter wp_biographia_shortcode
  • Added: Filter wp_biographia_links
  • Added: Filter wp_biographia_feed
  • Added: Filter wp_biographia_biography_box
  • Added: Support for the enclosing form of the wp_biographia shortcode in addition to the self-closing form.
  • Added: Support for resetting the plugin’s settings/options to their initial default values from within the admin screen.
  • Added: Support for hiding display of the Biography Box from posts, archives and the front page by category.
  • Added: Tabbed settings/options in the admin screen.
  • Fixed: Bug that caused an empty contact link to be displayed when an user’s profile has an empty corresponding contact field.
  • Fixed: CSS bug that prevented WP Touch from working in non-restricted mode.
  • Fixed: Bug that caused extended contact links in an user’s profile to be persisted after plugin uninstallation.

2.4.4

  • Released 2012.02.22
  • Fixed bug where Vimeo contact link setting was not persisted across settings changes.
  • Fix bug where “More Posts” link linked to the current page URL.
  • Minor CSS tweak.

2.4.3

  • Released 2012.02.17
  • Fixed bug where page exclusion settings were not persisted to the back-end database configuration settings.

2.4.2

  • Released 2012.02.16
  • Correct version number in plugin header.

2.4.1

  • Released 2012.02.16
  • Fixed regression bug in v2.4 where a contact link items displayed as an empty link if enabled in WP Biographia but if the corresponding link in the user’s profile was empty.
  • Fixed regression bug in v2.4 where the user profile Biography Box settings text was not properly displayed.
  • Tweak v2.4 CSS to clear up styling issues and to align list item styling with best practice.

2.4

  • Released 2012.02.16
  • Add internationalisation support; add Spanish and Turkish language files.
  • Add configuration setting to control the user’s name in the Biography Box as a link to “More Posts By This User”.
  • Add support for displaying the user’s contact links as icons as well as plain text links.
  • Add support for using an alternate link icon set.

2.3

  • Released 2012.01.26
  • Hide the display of the “More Posts” link in the Biography Box (if configured) if the user has no posts.
  • Add author, prefix and name short code attribute support.
  • Add support for global (across single, archive and front page templates) post exclusions in built-in post types and custom post types.
  • Tightened wording in admin screen around post exclusions.

2.2

  • Released 2012.01.17
  • Add enhanced short code support (raw and configured modes)
  • Add support for displaying the Biography Box on archive pages that use excerpts
  • Enhance contact information and Biography Box links to support Delicious, Flickr, Picasa, Vimeo, YouTube and Reddit
  • Fixed bug that caused the Biography Box to be displayed for every page of a multiple page post
  • Fixed bugs in avatar image size handling; non-default avatar image size was not persisted across settings changes; avatar image container div was not resized to new non-default avatar image size
  • Migrate use of wp_print_styles to wp_enqueue_scripts; see (https://wpdevel.wordpress.com/2011/12/12/use-wp_enqueue_scripts-not-wp_print_styles-to-enqueue-scripts-and-styles-for-the-frontend/)
  • Made terminology and control ordering for custom post types consistent in admin pages

2.1.1

  • Released 2011.12.21
  • Fixed bug in per user hiding due to debug code being left in the release

2.1

  • Released 2011.12.20
  • Add ability to hide the Biography Box from being displayed on posts, on pages and on posts and pages on a per user basis
  • Add settings link to Settings / WP Biographia admin page from the plugin’s entry on the Dashboard / Plugins page
  • Add checks for avatar display in the Biography Box being requested with avatar support not enabled in the Settings / Discussions admin page
  • Add Help & Support sidebar box to Settings / WP Biographia admin page
  • Handle upgrades to configuration settings gracefully; fixed bug that didn’t persist unused/unchanged configuration settings
  • Cleaned up the wording for the Settings / WP Biographia admin page and made terminology consistent across all configurable options
  • Tweaked admin CSS to introduce padding between the settings container and sidebar container that changed in WordPress 3.3

2.0

  • Released 2011.11.18
  • Added the ability to set image size
  • Added a simple shortcode
  • Added Custom Post Types support with the ability to exclude based on post IDs
  • Added ability to set the bio at the top or the bottom
  • Added a filter to short circuit for further customization
  • Added ability to include the post user’s email link
  • Refactored plugin file locations in line with WordPress plugin development recommendations
  • Fixed CSS issue for gravatar

1.0

  • Released 2011.08.03
  • First version of WP Biographia released
Malaking puwang ng bass splash review Bakit pinapayagan ng pamahalaan ang operasyon ng mga monopolyo How to play Super Ace jili Nice88 club withdrawal Esball online casino com registration Nuebe Gaming legit HB888 Casino real money Casino bonus no deposit free spins 2021 12 Titans Greek mythology online slot machines for real money free play Mines jili login download Allin88 ph login Casino Guru gratis Vegas World login Apanalo online game no deposit bonus 77ph Himala himala wikipedia 啶掂啷嵿ぐ啶ぞ啶?啶曕啶ぞ 啶灌? 啶す 啶囙い啶ㄠぞ 啶栢い啶班え啶距 啶曕啶啶?啶灌啶むぞ 啶灌? Mnl168 online casino register philippines login Bally slot machine value Jili live casino no deposit bonus Gcash gambling reddit philippines tamabetcasino Jili magic lamp app Mwplay888 net download for android Vegas Live Slots hack APK Clive and jill sidequest ffxvi Jiliasia online casino Online bingo jili withdrawal Chili for a crowd Silver Palate Jili168 register philippines Jili mk casino Jili cc download for android Habanero online casino games philippines Philucky withdrawal format 377 jili login register philippines Jili slots download Bsa387 login password Ginto Casino link 49jili login to my account login philippines app Royal777 casino no deposit bonus 8 juli feiertag wikipedia Ano ang mga flash game sa hollywoodbets app download Game of Thrones Slots referral code Igt address manila Zynga slots free coins cheat android Jilicash real money withdrawal Paano gumagana ang mga online slot machine login Ezwin online casino philippines Peso88 login register Jili kaganapan login register Winning plus 8 login philippines masuwerteng iikot ang mga nakakalokang slot 123jili app Login casino games online unblocked Transaction password USDT Baccarat games online real money Appointment slots vs appointment schedule quick hit slots commercial actor Multiclass spell slots table Slot schedule template 啶灌啶曕啶?啶曕ぞ 啶い啷嵿い啶?啶曕た啶むえ啶?啶灌啶むぞ 啶灌 Jili jackpot 777 download for android latest version Million 888 casino login register Tongits go apk unlimited money latest version Pinakamahusay na jili slot game download YE7 Download App BET99 Quebec Free 100 online casino registration facebook page 2021 slots no deposit bonus Online gambling philippines real money Jilibet casino login philippines Super Royal 777 Slots go casino login Register Youtube ng slots today Peso 888 apk Mini777 register download PG gaming casino login Wizard of Oz free coins gamehunters Philippine News today live 247Spin free 100 spin the wizard of oz slots free coins E2 jili casino login Konjac jelly Japan Big bet review korean Online casino Philippines News 7 Juli 2024 memperingati Hari Apa Jili 747 casino login Winph 777 login philippines app benefits of online casino games Wild aces online casino real money Mwcash88 Bonus hunter cc email Maduna clan names FF16 change party members Online casino games real money free spins no deposit Dbx casino real money philippines Okada online casino apk latest version Skype Download for PC Jilibet donnalyn login Register online casino 777 Pub download old version Spaghetti Jollibee price Jili no 1 login register Jiliasia app apk Super slots apk old version 646 casino login Register Philippines Listahan ng laro ng skillz login Totoong online pokies philippines release the kraken clash of the titans (1981) Casinos online real money philippines Phil168 APK Download Chumba Casino login Www 49 jili casino login password Fb jili casino login download apk Jlbet slot login Jili 777 lucky slot login register philippines apk Pagcor logo meaning Hard Rock online casino login 77ph com login password download Ano ang gamot sa mataas ang sugar Online casino download APK Geely Emgrand price Philippines BLBET Tapwin 2024 download apk Lodi 646 casino login ph Royal558 download Abc jili register philippines download LVJILI login Royal fishing jili download for android Free60 casino philippines Kk jili libre 58 real money download PHFUN login Nice88 download free ios Best penny slot machines to play at the casino for beginners portal.pagcor.ph sitemap online casino games no deposit bonus Unlapi AAA Jili login Bongobongo ug Casino Jili x yb download apk do 888 casino register Cash Rush slots 777 apk latest version Free online casino games win real money no deposit Philippines Fortune 888 login password Slots casino login no deposit bonus 49 jili time philippines download Nuebe register login Jili fishing game download free Win99 casino philippines Bingo Super Star download 55bmw win withdrawal Jili kilig login download Superball Keno online Hacksaw slots real money Pagcor address philippines 188 jili demo account hack Vegas online casino games free play Jili 49 net casino login philippines 777 jili jackpot apk latest version Fc slot demo free download Jili under maintenance today download android 3 patti slots patti online play Jili bingo download for android Smbet register philippines Osm jili register mobile number philippines MWGAMING 188 register Nuebe agent login philippines Online casino color games philippines Is Winford Casino open today Jili update today WK777 slot Jili casino review philippines slotomania online Lucky jili slots login register mobile 188 jili casino login download philippines Baccarat game strategy reddit Jili22 promotion How to withdraw in jili slot online 1xslots login Mnl168 online casino register philippines login Paano maglaro ng slot gambling login casino for real money online Best online casino Philippines reddit Jili deposit 50 withdrawal limit Nextbet philippines registration 168jili login registration Www royal888casino net register Double Win Withdrawal App Fisheries department officials 777 Lucky JILI Slots Casino APK download Nz online casino games real money 888php withdrawal Jili mines predictor apk Online casino jackpot slots free play yy777cam Jili one login download mainstream records lee young-ji 77ph com download free 49 jili years login register Jili slot club jackpot 777 download free money philippines Www betvisa games app 1888 jili casino withdrawal online July 10 religious holiday Labet88 login registration 2021 Osm jili casino online games philippines download Money 888 login download Empire slot machine download Ireland online casino games free play Kk jili casino login registration download apk 1000 free games to play with friends Poseidon god son Jili lucky slot app download Big baller club casino login registration philippines Fish Hunter - Shooting Fish Pnp 888 jili slot game login app Limbo game download for PC Highly Compressed Jili jackpot 777 download apk ios slot machine free games free spins deposit bonus Jackpot meter app for android Instant withdrawal betting app Dama N.V. casinos no deposit Bonus Joy 7 casino login free chips Eliakim Sadoki Hadaa Ya Walimwengu Gemdisco login 08 jili register app Jollibee slot casino login philippines register online Award winning chili recipe Allrecipes Helens Slot APK old version Mga kahinaan ng mga pragmatic slot machine login Jili pulang sobre register online Jili777 free 150 no deposit bonus Philippines Jili no 1 com withdrawal philippines Slot online game free real money Jackpot joker jili demo free download Best pg slot game free no download Wagi77 login Philippines Rich9 pinakamainit na laro login Fortune gaming88 login philippines Royal Slot Login Fun facts about July 19th Geely gx3 fiche technique philippines IND slots APK yono Ox jili slot withdrawal What happened on October 7 Al Jazeera 777 pub com login download Nice88 app 99 Fortune Casino login Register Tmtplay888 Jiliplay login download Love jili vip login password 888bet registration online Dragon vs Tiger hack apk Lucky JILI slots login register Kpl casino Online casino game for real money free play 777pub open now promo Video poker jacks or better strategy chart Jili 365 casino login register philippines no deposit bonus download Free slots com party bonus Animal Husbandry Minister Bihar list 188 JILI casino login registration Philippines Anuani ya katibu tawala mkoa wa dar es salaam NetBet registration Fg777 register philippines 90 jili live login download One slot game download Agent GEMDISCO Jili 999 com withdrawal Jilimk casino log in no deposit bonus tg777 login register philippines Pagcor login philippines List of licensed POGO in Philippines 2023 How many cannabinoid receptors are there in the human body Q25 jili download ios Ff777 vip login Jili 49 dot com registration philippines Ano ang speed roulette review Ph joy vip login registration philippines 4 ram slots which ones to use Mga puwang ng video youtube Jackpot Party Instagram free coins www.free facebook.com log in Betvisa download for android 49jili pogcor Betso888 login download Jollibee slot login Fruit Theme Birthday Party Wjslot claim form Nextbet Live Casino Lotto go Jili volatility calculator philippines Teenage Kraken Salish Matter Lucky 777 online casino login philippines Slotomania 777 casino real money Mega ace jili demo apk latest version Falcon Play customer service www.666.com games Bingo Jili PH Slots earning app real money no deposit Canara Bank Internet banking PIN generation 8K8 vip login Philippines No 1 jili app for android free download Gonzo's Quest max win 9 Pots of Gold land and win What does Mr Mike Slots do for a living Jili fc slot real money no deposit bonus Ph macao jili register download limbo apk + obb download Swcup6 net live login Register philippines Free slots 8888 no deposit philippines Jili tadhana slots download free Free casino slots 3 lines no download Jili okbet real money philippines Jili88 ph com register login password Slots earning app real money download Jili apps download free for android ios Kurdish traditional dress Labet88 online casino Ez jili telegram ios 94067 water heater door installation Real Boxing 3 download Best casino online Wishbone Games Nextbet login mobile registration Jili no 2 login no deposit bonus Poder Judicial Superace88 club login registration link Triple match 3d master mod apk Sino ang cowboy slots wife Jili 5678 casino login poker star Apanalo casino app login KK JILI casino login app apk Www gibson casino www gibsoncasino com login APEX slot download Best free slot machines play for free no deposit Mining Telegram group link Jili t7 real money Jili369 app download Progressive jackpot meter link Lampara ng genie philippines Best free slots with bonus Asia JILI casino register 888 ladies slots login UNO Spin Millionaire Dimm slots reddit King game app download apk Yy777 index login No deposit slots real money Yeriko by injili bora choir session 49 jili road register philippines Jili slot 777 login register online no deposit bonus philippines 啶啶?啶曕 啶啶班が啶?啶曕ぐ啶ㄠ 啶曕 啶夃お啶距く GGBet welcome bonus Is the 49ers coach a Christian Sino ang may akda ng medusa Ace Super ph casino Login games.747 games.ph/launchgame open now Tiktok video Zili 7 Gold Fruits slot Peraplay APK download Labet88 register philippines app Love jili vip login philippines Slots download free Jili slot jackpot login register Junglee Rummy APK Paddy power virtue Welke dag is het vandaag in belgie Nn777 login philippines app Pb777 login id and password free Sweet Bonanza free spins no deposit Online slots casino 888 real money no deposit online casino games real money Osm jili casino Megaways slots login Konami free slots no download Big Bass Hold and Spinner Megaways demo Jili 888 register Jili mines download free Best free video poker no download fishing slot casino - free 100 000 coins Jili22 NEW com register Big Bass Bonanza Geely subsidiaries in philippines State fish of bihar in english Game of Thrones Slots Casino free coins hack Lucky jili casino login registration philippines apk Mga laro ng slot na nagbabayad ng totoong pera apk Niceph casino real money Fortune Dragon PG slot demo Reference generator Jili88ph net register download FG7777 Jili super win apk best online casino games to win money Bagong jili register app 777sm vip login Jl bet slot register Jili casino sign up bonus no deposit philippines Phlove Casino Login Register Jili slot online real money Ez jili code free download Cannabinoids structure How does Dragon Link slot work 188 jili casino download free Which casino has the most winners in Vegas Goldfish slots apk Fisheries, Bihar gov in Medusa megaways real money Mwcash88 casino login Best time to play crazy time reddit Voslot jili register philippines Ang tao ba ay nagmula sa unggoy PHL63 login register Demo Jili Golden Empire Download app and get bonus Pogibet free 100 philippines 22FUN APK Lucky JILI Casino login registration Win win Game zambia online app download Win100 com casino group win100 originals win100 originals register Mlbb Win Rate Calculator APK Mi777 casino login philippines register Do888 casino login no deposit bonus Jill Scott net worth 8 jili slot download for android 55X Casino Login Register Philippines Ug777 app download apk for android 94067 water heater door replacement Loveph casino Tianjin University of Science and Technology How to play Fortune Gems online Earn money online Philippines legit Xo jili com register philippines Cruise casino in Goa Play slot machines for free online no deposit Is golden Cowboy good tds online casino games volatility Tmtplay casino login register mobile 啶戉え啶侧ぞ啶囙え 啶曕啶膏啶ㄠ 啶椸啶?啶曕啶膏 啶栢啶侧啶? EZJILI Login Register Game room online casino games real money Casino dealer Reddit ph Slots jackpot meter philippines app Pldt 777 real money withdrawal Jackpot World redeem code free 2024 Jilibay free 68 no deposit bonus Bet88 ph app download for android OKBet rewards app Julie emergency contraception reviews 啶ぞ啶椸啶?啶う啶侧え啷?啶曕ぞ 啶膏す啶?啶夃お啶距く Mega win login Best online casino games real money app Jiliasia ace download Jili 178 real money app Pag-IBIG membership Double DaVinci Diamonds free slot game jili 711 Slot virtual real money free Jili tongits withdrawal limit Okbet casino login philippines download Sabong derby 2023 Full Video MONOPOLY Slots download White part of eye swollen like jelly home remedies Ez jili codes 2021 Wjslot com rewards login How many evolutions can you have in a deck Clash Royale Online casino jili login register House of Fun VIP PLUS download SM Megamall 3 day sale 2024 dates Phil163 login Simple chili recipe Jili slot machine apk latest version Jili188 login download Boss88 Slot Login Jili go login philippines Online casino games with free signup bonus philippines Jili mines download apk Fc slot online philippines Y777 jili real money withdrawal Win99 online casino login register Lucky jili slots login register mobile philippines BetVictor UK Jilino1 new site Jili no minimum deposit philippines 2020 Royal777 login register philippines Forgot transaction password in phdream Casino plus jili slot real money Win99 slot games free apk Nn777 slot jili real money 38jili login GO Keyboard APK betBonanza mobile login registration Dragon cash vs Dragon Link 8k8 online casino games downloadable content philippines Best slots to play on FanDuel reddit balato8aa Crown89ph casino login Online casino builder Wjevo22 app irich slots&games casino 777 Boxing king casino real money Jili22 vip202 download online casino games with no minimum deposit Mega Wheel game download Jili apps download for android free Diablo 4 enchantment slot not working Online lucky sweepstakes no deposit bonus 747 online casino games philippines Super ace demo game online free Spin and win cash in Uganda withdrawal PG Soft Wild Bounty Showdown 777sky slot Jiliapp download latest version Www royal888casino net register Royal slots real money login ????? ?? ???? ??? ???? ????? ????? Phkuya com casino login PHIL168 new link Royal888casino net withdrawal July 8, 2024 Casino machine Jili lucky slot app apk Pragmatikong laro ng big bass bonanza videos 200jili download latest version Dometic 94067 Online slot machines philippines 12 Titans Greek mythology Online slots strategy Casinos online slots real money Jili official website app for android Play tongits online real money philippines Bmy88 net login password Jili 646 ph register app ios Kumuha ng jili app login download Ezjili com download ios Mega Ace mechanics Jili ace 777 no deposit bonus Jili live club login Jili 747 login app 291 jili 01 register download Tongits Go new version Boss JILI casino login Rich711 casino login download 9jlbet Real money casino app apk Jili event login app Jackpot fishing jili download free Pagsasalin ng teksto Sixers game today Please complete the required turnover for withdrawal tagalog Majhail X song download Mp3 April 8 2024 holiday Philippines Pg777 login register online Crazy Time prediction telegram Tadhana slots apk download old version Transaction password in scatter example Mine (Taylor Swift release date) Jili zeus slot login register International casino app Monopolyo ng big baller login Win888pub app Diablo 4 enchantments Phmacau club 啶す啶苦啶︵啶班ぞ 啶溹啶む 啶曕 啶啶∴ Apat na uri ng tunggalian at halimbawa Sw888 casino register BYU portal 49 jili vip login philippines Ubet95 Casino login Jili 178 ph register Is online gambling legal in Philippines Jili t7 login registration form Fg777 official withdrawal How to get unlimited coins on Vegas Live Slots Go88 slot login register download Slot sites philippines Pnxbet77 legit Online lucky 9 gcash download bwinners - online sports betting virtual & casino games Fachai free 150 Casino table games inside (2008) Ocean King Jackpot download Boom casino login KK JILI Casino Login app apk Nexusgaming88 agent login philippines Bonus 365 casino login Free unlimited bingo card generator PDF Microsoft login Jill meaning slang origin Grand slot Palace online casino W888 login Jili369 real money login Nexus88 Gaming login register Jackpot fishing demo free download Jajji veer punjabi gane mp3 download online casino games not real money Wagi 777 download for android free spins bonus no deposit Best casino online slots europe Bombing Fishing demo Limbo bar game Lodigame 291 login registration philippines Mammoth Gold Megaways Peraplay login Fb jili casino login download free no deposit bonus Bingo filipino machine price Login slot machine app Nextbet app download apk Slots game machine free Is DraftKings Casino legal in Massachusetts Webcam app Free unlimited bingo card generator What do CB1 receptors do 177bet cc download Jiliasia casino login philippines Online lucky 9 gcash withdrawal KK JILI register Slots rivals ladbrokes login Jilivip download ios online casino games in florida slot o pol online Jl777 Login Register Charge Buffalo free play Lucky Tongits gcash download Ph646 register mobile philippines Promotion 100 free 58jili login registration online x570 ram slots Mines predictor free Jili17 register mobile Kkjili com app download latest version Best free bonus slots real money Gba 777 casino no deposit bonus Best slots to buy bonus GGBET GCash Wild hammer megaways apk Real money gambling games philippines Jiliko photos free Libreng mga laro ng slot online register MVG SunBet login Bet777 Login Casino keno games free online no deposit Casino ng rainbow riches real money Jili referencing indian law ppt Free casino online real money Philboss link login Jili slot 777 login register online philippines Premiumbets TG777 app login 10 07 day Pocket GK Book PDF in Hindi Online casino 50 cash in no deposit Free slots paypal deposit Phlwin online casino hash encryption games traceable fair casino apk casino game casino Jili188 tv login password 5e sorcerer spell slots guide Alamat ng wizarding wars reddit Jili slot jackpot 777 withdrawal Www jilino1 club app Betso89 register Free website browser download pagcor online casino games Poker machines games casinos online free bonus Play video poker free no download for android Is Seybold journal Scopus Indexed How to withdraw in jili online gcash mwplay888.net login Phpslot app apk Top 1 game in the world 2024 Bingo plus pagcor login password 178jili HP777 Casino Jili day app apk Casino guru Brazil nuebegamingslot Jili casino app login download Jili 09 register download taylor swift july 9th 1:38 Geely Coolray 2024 Release date Philippines Jollibee picture outside Xo jili casino login register mobile Spielautomaten kaufen Royal Club apk Mod Helens gogo jili login register philippines Lucky 777 apk latest version Katangian ni apollo sa cupid at psyche Doble Engineering Casino jili real money app Slot machine png Falcon casino login register 5e multiclass spell slots Arcane Trickster Jili slot jackpot app download Paano maglaro ng slot para kumita withdrawal casino slot games real money Helens gogo jili register philippines Casino articles topics Fachai free 100 Slot 50 minimum deposit Philippines sm 3-day sale schedule 2024 Magic jili slot game login Are casino Apps rigged Tala888 download jackpotfree Big bet review guardian online casino games for free Fg777 casino login register link Betvisa best online casino Microsoft Store download lodivip3web Jili 789 download Best online casino games for real cash Tongits go 4.1 6 apk download latest version Gba333 login Register Phone club Game online azure pre-validated domain Sabong app apk Bandit Slots Youtube Jacks or Better strategy app Magandang slot ba ang Sweet Bonanza? 100 free spins no deposit no wagering requirements philippines Fg777win com login Pci slot types explained Nakakabuti ba ang sugal sa tao Tmtplay casino login register mobile Galaxy 88 casino com login register Free flash video poker download no download Winford Online casino login JIL pastor Winhq9 login register mobile W500 one Jili veo casino login registration Buenas 88 Register How to withdraw 90 jili club philippines online Jili free 100 php no deposit bonus philippines Jili com casino register Minecraft Crazy games Mitran de boot remix mp3 song download 320kbps Anjeer Dry fruit tg777 customer service 24/7 Arat365 com login Apps na pwedeng kumita ng pera legit 9k slot Casino Jili 8888 download for android William Hill live Tesla jili login philippines 啶す啶苦啶︵啶班ぞ 啶溹啶む x7-16 啶啶侧啶? Okada Online Casino download ios Lucky Neko demo play Jili lucky download for pc Original Buffalo wings recipe 777 jili Casino real money Betsson Group Glassdoor 40 jili casino login philippines app 777ku login App Byu jili register download Yesjili com login philippines Jackpot fishing game real money Ubet95 app apk 888 casino app store download Betway zambia online live sports betting download jili 80 iRich kh free download Mga nakakatawang palaro Top online slots online lucky 777 slot game download 50 deposit game online 49 jili games Online casino game with real money Freeplay Casino no deposit bonus Jili 646 777 login register philippines link Kk jili login register online philippines Anti epidemic online casino gcash login Gold 168 Casino login Royal777 register JILI6 promo code Philippines Lodislot 777 casino online real money Ijility maumelle ar Mnl168 download for android Bet 888 login philippines Boeing Secure Login 188 JILI Casino login Jili asya download Mr joker Photo Dinosaur tycoon jili ios download Jili777 login register Philippines 49 jili games download Wow888one philippines Phl63one philippines Mega Medusa Casino login Win888 casino register online Pldt 777 real money withdrawal solaire online casino games MNL63 free 100 No Deposit Jili caishen casino irich slots&games casino 777 Free slots poker online real money Casinos online for real money philippines Royal Club login app download free Online casino free real money DO888 online casino JILI188 app Charge buffalo jili download free Jili free 100 no turnover philippines no deposit bonus Gogosolot online Casino Login Superjilli ph Jili365 bet login sign up philippines Jili x super ace download 5 jili casino login register online Lolliplay login no deposit bonus Pldt jili slot download ios New online casino free chip no deposit Is transaction password and atm pin same sbi mega joker spielautomat Baccarat Strategy book Sweet Bonanza Candyland live Jili 337 withdrawal fee Baccarat Evolution Jili games download for pc slots with real money online 5jl Casino Login Super Ace slot demo SWERTRES sureball hearing today Philippines youtube Jili big win login register Online casino games no deposit free spins philippines Top online slots online lucky 777 slot game download Big baller Club info login Non working holiday Pasig 45 days from july 9, 2024 777 10 jili casino register download jackpot giant slot 90 jili register download JL777 Casino Tp777 com login register mobile Casino tr c tuy n login Gogo jili app download apk mod Legends Slot Bingo JILI 52 Club APK Jilievo888 com login register online Lucky jili real money 888bets mozambique app download Happy jackpot slots Fairground Slots no deposit bonus Wild ace demo download New Vegas slots luck Casino mania bonus Huff and more Puff slot machine for sale baccarat game how to play Jili ph register online Jolibet withdrawal Football teams Premier League sissi slot machine free play Jili vip login register philippines download app ios Transaction password in tagalog example brainly Play free casino games online without downloading for android ELK casino games Libreng computer video poker download Winph6aa philippines Jlbetslot 49 jili casino slots login Jili app casino download apk for android Mnl168 online casino register philippines apk Jili 80 login register Jili free withdrawal app Maaari ba tayong maglaro ng monopoly online play SYNOT Interactive Playzone cashback labet88.com app Jili49 login register Jili asia com casino login download Gold slots casino sa facebook login Jili balita withdrawal fee Gamezy Rummy Jili day register online 90jili game club download PH Macao game 777sky casino philippines Ibetph web casino Best online casino games philippines gcash 247 slots login Elf bingo jili online registration Funny captions for online casino games 777 lucky slot no deposit bonus OKBet App download apk Z25 Gaming P88 jili login app Jili77win philippines DuckyLuck Casino Ttjl casino link app 55jili login Cali 777 com login password LIMBO APK download latest version 200jili login philippines 646 jili 01 login app FB JILI Login Golden Wealth Baccarat live Panaloka login registration Tala0888 download apk GemDisco Login register Lion dance history Ezjili login register mobile Royal777 register Jili 337 login register philippines download Fishing era poppo How to play jackpot fishing app Libreng jili games login Swerte ng buto 77ph1 com login password How do i install tongits go on android Joy jili casino login register philippines free chips Slot machine 777 login Jili online slot apk Jili ko o casino login register APK injector Slot Pragmatic Play Gogo JILI Casino login 50 minimum Z790 ram slots for gaming Tongits Go update download How to compute special non working holiday Philippines 777 Casino 77 free spins login MWGAMING Login Password How to play taya 777 online How does Lee Young ji know English Phdream88 login app 63jili download ios ME777 Casino Login Philippines Baba Slots online casinoplusslot How to play jili super ace online Unibet sign up bonus 60 jili login download no deposit bonus Philippine online casino no deposit bonus pxbetgamingslot Online casino games that pay real money no deposit 49jili flag login password Jili 2024 login register Paano maglaro ng jili super ace login download Vip jili login philippines app Jili bingo download for android 9Y game City Jili jackpot lucky casino real money no deposit bonus Easy money jackpot fishing philippines Casino free games slots machine no deposit Slots7 Casino free spins Winjili ph login registration Jili games free 100 download apk Jiliplay999 com login Hot chilli megaways review Jili games apk latest version ang mga slot ay nagsusugal Nice 888 login philippines Playzone Casino FC jackpot Casino login Spin jackpot YONO apk Juegos de casino gratis sin descargar ni registrarse Gold slots casino sa facebook withdrawal Jili 168 login registration link Mitran De Junction Te Mp3 Song Download pagalworld Lovejili app for android apk download Helens gogo jili casino login Transaction password in scatter example mainit na jili casino Casino online free credit no deposit How do i install tongits go on iphone Boombet casino 100 JILI casino no deposit bonus Peso88aa philippines Jiliko gcash withdrawal Jili veo login philippines Jili slot game download apk latest version Macau casino online login philippines online casino Katangian ni sita sa rama at sita 49jili login to my account philippines app Forgot transaction password Fg777app download Baccarat in casino online 98 jili casino login register philippines download app Marvelbet apps download apk for android Xo jili app login Speed roulette strategy betway zambia live soccer online casino games Casino 777 lucky jili slots real money yakuza: like a dragon slots high payout token Wild Coaster PG slot Turkish Airlines flights Bet jili app download for iphone Why do slot machines have bingo cards Ez jili code philippines DOUBLE Jackpot Slot MACHINE for sale play free online casino games Bet777 Login app Supabets mobile app download Winning plus 40 apk Play top Dollar slot machine online free no download Jackpot meter jili download apk Plot 777 casino login register link Best time to play jili slot on sunday reddit