Deze plugin is niet getest met de laatste drie grote versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Er kunnen ook compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

Profile Xtra

Beschrijving

With this plugin an author can nicely add an image to its profile (an use it on their posts instead of the avatar). Some different social addresses can be added also by the author. The image, bio and social contact can be placed anywhere in the post (using shortcode or its widget form).

Sometimes you want to add an article from certain person, but not neccesarly register that person as an author to your blog. With this plugin, you simply add that (alter or alternative) author directly when you create or edit the post. In the backend, to wordpress, you are the author (you have such capability), but in all other aspects, in the frontend, the alter author appears as the author of that post.

And if you want to consider more than one author for a post, this plugin let you to do it easily.

Donations

If you want to help me in writing more code or better poetry, please invite me to a beer (or coffee, maybe) by sending your thanks to http://paypal.me/ernestortiz. Thanks in advance.

Schermafbeeldingen

  • The "Social contact" part in the Options page of this plugin. (Please, note that we checked to include all except a "YouTube" field in the profile page)
  • This is what we got in the profile page, under Contact Info -if we only had been selected the "Twitter" checkbox in the "Social contact" part of this plugin.
  • Also, if desired, thanks to the "Profile image" part of this plugin, you can choose to set or upload a profile image and use it instead of your avatar.
  • Uploading Profile image.
  • Profile image ready in Profile page (don´t forget to save).
  • Your profile image appears on Users page too.
  • Using text widget, you can also widgetize the shortcode...
  • ...And see the widgetized shortcode in action.
  • If the "alter author" part of this plugin is enabled, the Alternative Author metabox appears.
  • Once filled (at least the name) and saved, the data of alter author is considered instead of the Author's.
  • Name, profile image and description of alter author...
  • Alongside with the Alternative Author, we have the Multiple Authors; that means the possibility of consider many authors (instead of only one) as the authors of a post. Please, note that you can choose where to use multiple authors: in regular posts, in pages, or in any of your current custom posts.
  • When we are editing a post, a metabox appears in the sidebar, where other authors of the post can be selected.
  • Please, note the post published showing the two authors...
  • And a closer detail... (Note the "Plato & ET. AL."; Plato is, of course, the main author, and "et. al." is an abbreviated form of 'et alia', Latin for 'and others')

Installatie

  1. Upload unzipped plugin directory to the /wp-content/plugins/ directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the ‘Plugins’ screen in WordPress.

FAQ

Installation Instructions
  1. Upload unzipped plugin directory to the /wp-content/plugins/ directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the ‘Plugins’ screen in WordPress.
So, this is like a three-in-one cabinet plugin?

Right. Althought imbricated in programming you can distinct three modules or parts: profile image, social contacts, and authors -both the alter author (“alter” means “other”, in Latin) and the multiple authors. Please, visit the Options page of the plugin to enable or disable any of this parts…

Can I change font awesome icon used for link to the twitter author’s account?

You can change it directly on the style sheet of your theme (the usual way yo do it with Font Awesome). And can change its properties (font-size, color, etc.) as well.

How can use this plugin in a widget?

Well, shortcodes can be used as widgets using the text widget. Just write the shortcode on the text widget content; for example [profilextra]

So, back to the shortcode…

Our shortcode is simple:

To show user name, image, description & link to webpage (in that order):
    [profilextra]

but it has many arguments, and arguments has several values, in order to be widely adapted to the users needs or desires. If an argument is not presented, its default values will be considered; the particular shortcodes values have a preference over the general options of the plugin.

Lets see the arguments and its values, and some samples to clarify it:

The argument SHOW determines what to show. Its values are: n, i, d, s
(for name, image, description, and social contacts), or a combination of them, separated by commas. When more than one value is used, it appears in the literal order.

To show only the social contacts of the author:
    [profilextra show="s"]
To show the image and then the name of the author:
    [profilextra show="i,n"]

When show the description you can cut the text with the parameter rmore, for example:

To show only 120 words in the description, and ending it with a "...":
    [profilextra rmore="120"]
To show only 60 words in the description, and ending it with a "(...)":
    [profilextra rmore="60 (...)"]

You can pass a class to the image using the argument ICLASS:

To show the author image with certain style (defined by the class "roundimg"):
    [profilextra iclass="roundimg"]

In the Options page of this plugin, you can choose to show the link to the social accounts of the author with the proper name (literally “twitter”, for example), or with the regular icon, or with the squared icon. The argument SOCIAL_SHOW is used to overwrite the option of the plugin related to Font Awesome icons. Its values are: name (show only the name), icon (show only the icon), iconr (show only the rounded icon), both (show both, name and icon), or bothr (show both, name and rounded icon).

The argument SOCIAL decides which social account to show. Its values are: w (for website, which is the default value), t (for twitter), f (for facebook), l (for linkedin), g (for google plus), e (for email), or a combination of them, separated by commas. Let’s see some examples:

Do not show any social account at all:
    [profilextra social=""]
Show rounded icons for website and twitter (in that order):
    [profilextra social="w,t" social_show="iconr"]

This plugins shows tha data of the current author, but you can show the data of a given author passing its id with the argument USER_ID.

And, finally, there is an argument to pass a class to the whole: WRAP_CLASS (its default value is ‘profilextras’).

And what about multiple authors?

You only need to select the various authors of your post; that’s all. It works with the same shortcode that you put in your theme for the alternative author or for only one author. If the post have many authors, the shortcode simply iterate from one to the next, until finished.

Each author being iterated is surrounded by a DIV with the class authorxtra; in order to be stylized as you prefer.

Also, you can use the function has_multi_authors in your theme to know if the post have many authors and take decisions in response. For example:

<h3 class="widget-title">
    <?php
    if (has_multi_authors()) {
        _e('About the Authors','olsen-light');
    } else {
        _e('About the Author','olsen-light'); 
    } 
    ?>
</h3>

And, on the contrary, you can found where current author is part of the multiple authors’ team. Use the function posts_where_multi for that. For example, searching on the ‘product’ post type of woocommerce:

<?php //we are on the author's page sidebar
$theauthor = get_queried_object();
$multi_ids = posts_where_multi($theauthor->ID,'product');
if (count($multi_ids)>0){ ?>
    <div class="widget">
        <span>I'm also participate as author in</span>
        <ul class="products">
            <?php foreach ($multi_ids as $multi_id){ ?>
                <li><?php echo get_the_title($multi_id);?></li>
            <?php } ?>
        </ul>
    </div>
<?php } ?>

Beoordelingen

Er zijn geen beoordelingen voor deze plugin.

Bijdragers & ontwikkelaars

“Profile Xtra” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “Profile Xtra” naar jouw taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

2.2.2

  • Minor code improvements

2.2.0

  • A function was added to search if author appears as multiauthor and returns where (the post ids)

2.1.6

  • Minor code improvements

2.1.5

  • Now you can only show a number of words in the author description instead of the full description

2.1.0

  • Now you can choose where to use multiple authors (in posts, in pages, or in any of the current custom post types)

2.0.0

  • A couple of social contacts were added to “Social Contacts” section
  • A Multiple Authors option was added, so “Alternative Author” section now become simply “Authors”
  • Some improvements on the code, not just to make room for the new options

1.0.0

  • Stable Release