Lets you easily add WP Custom Author Images on your site.
The WP Custom Author Image plugin for WordPress lets you easily add WP Custom Author Images on your site.
It creates a widget that you can insert in a sidebar or any other widget area allowed by your theme.
The plugin now supports a short code [wp-custom-author-image] you can use to directly add the image to the page or post content.
Alternatively, you can place the following call in the loop where you want the WP Custom Author Image to appear:
<?php the_wp_custom_author_image($author_id = null); ?> This $author_id parameter is optional. If it is not passed in, the code will attempt to get the current author of the page/post.
A second version of this function exists whereby you can pass in width and height to display the image.
<?php the_wp_custom_author_image_size($width, $height, $author_id = null); ?> This $author_id parameter is optional. If it is not passed in, the code will attempt to get the current author of the page/post.
To configure your WP Custom Author Image, browse Users / Your Profile in the admin area.
You can adjust the actual display size in the WP Custom Author Image widget or by using the_wp_custom_author_image_size function call.
If you do not specify a size the width and height of the actual image will be used.
For sites with multitudes of authors, the widget offers the ability to insert a link to the author’s posts — his archives.
Normally the widget will only display an WP Custom Author Image when it can clearly identify who the content’s author actually is. In other words, on singular pages or in the loop.
If you run a single author site, or a site with multiple ghost writers, be sure to check the “This site has a single author” option. The widget will then output your image at all times.
Normally the widget will use the author’s posts page (/author/authorname/) is the image is clicked on. If your site has a dedicated page for the author, such as an ‘About Me’ page,
there is a new field in ‘Your Profile’ called ‘About Me Page’. Entering a url in this field (/about-me/) will cause the widget to use this link as opposed to /author/authorname.
You can retrieve the url to the respective WP Custom Author Image by calling the function
<?php the_wp_custom_author_image_url($author_id = null); ?>
If $author_id is blank the plugin will attempt to determine the current author and retrieve his/her image.
/wp-content/plugins/
directorywp-content
folder writable by your server (chmod 777)You can use the .entry_wp_custom_author_image
CSS class to customize where and how the image appears.
For instance:
.entry_wp_custom_author_image { float: left; border: solid 1px outset; margin: 1.2em 1.2em 0px .1em; }
When displaying wide videos, images or tabular data, it becomes desirable to bump the content below the author’s image. To achieve this, insert the following code in your post:
<div style="clear:both;"></div>
Two constants can be set in your wp-config.php
file to set the max size of the uploaded image. These values are in pixels.
define('wp_custom_wp_custom_author_image_WIDTH', 100); define('wp_custom_wp_custom_author_image_HEIGHT', 120);
The default values for these settings are 250 x 250.
There is a filter called wp_custom_author_image_bio that can be used to modify the bio text.
More than likely you have place the the_wp_custom_author_image function call outside of your template’s posts loop so the author cannot be determined. Trying passing in an author id directly.