Connect with us

Tips & Tricks

How to: Add any authors gravatar to their post

Published

on

This is an easy one, just add one line to your single.php file where you would like the Gravatar to show up.

<?php echo get_avatar( get_the_author_id(), $size = '96', $default = '<path_to_url>' ); ?>

Tips & Tricks

Display custom url if comment authors url is blank

Published

on

Here is a nifty trick for your comments.php template. If someone comes to your site and leaves a comment but doesn’t leave a url back to there site, the default link that is shown in place of the php code comment_author_url is the current page link.

That might not look good. So, here is a little trick that I just implemented into my site. Besides installing the twittar plugin and pulling Twitter avatars I wanted to use the image itself for the authors url like. But if the author doesn’t have a Twitter avatar or a Gravatar it will display a default Gravatar that I set. If the default Gravatar is shown, usually the author will not leave a url link.

I would like to link the image to Gravatar.com so that they can get an image attached to their email address. So.. here is the code:

<?php if($comment->comment_author_url != "") { ?>
<a href="<?php comment_author_url(); ?>"><?php gravatar(); ?></a>
<?php } else { ?>
<a href="http://gravatar.com" title="Get a Gravatar today!"><?php gravatar(); ?></a>
<?php } ?>
Continue Reading

Tips & Tricks

Echo custom fields in any category

Published

on

Here is a neat trick. Say you want to show a custom field in you post or in a certain categories post. There is a simple code you need to write in order to accomplish this:

<?php $image = get_post_meta($post->ID, "image", $single = true); ?>
<?php if($image != '') : if(in_category(7)) { echo ''; } else { ?>
<img src="<?php echo $image ?>" alt="<?php the_title(); ?>" /></a>

In the example above I am calling the variable $image and telling the server that it equals the value of “image” inside get_post_meta or “custom field” of the current post.

Then we are asking if that variable $image doesn’t equal nothing or != and if it is in the category id of 7, echo what ever is in the single quotes (which is nothing in this example), otherwise show the <img> and the value inside “image” which should be the location of the image.

Update: Thanks to Austin from PressedWords for pointing out his trick, from the comment below.

Continue Reading

Tips & Tricks

Disable caching of your site or post

Published

on

I talked about Disabling search engine on search pages in a previous post using the meta tag. Today lets go over the web bots Cached copy of your site. If you are working on builder your blog, or have a temporary site up, use the following code:

<meta name="robots" content="noarchive">

This will tell any bot to follow your site, index it, but prevents a cached copy of this page from being available in the search results.

Continue Reading

Random Search Terms

Title

Recent Posts: Fully Net Worth . com

Jeremy Lock Net Worth- How Rich Is D’Andra Simmons Husband?

Jeremy Lock Net Worth- How Rich Is D’Andra Simmons Husband?

Jeremy Lock is a retired States Air Force Master Sergeant Combat Photojournalist. Throughout his career as a civilian photographer, Lock was able to capture some iconic scenes that show both the good and ugly sides about some of the realities of this world. As of 2019, Jeremy Lock net worth is estimated to be $2 […]

Cooper Hefner Net Worth: How Rich is Hugh Hefner’s son Actually?

Cooper Hefner Net Worth: How Rich is Hugh Hefner’s son Actually?

Cooper Hefner is an American businessman and writer. He is known to many as the youngest son of one and only Hugh Hefner. As of 2019, Cooper Hefner net worth is estimated to be $43 million. Cooper was born on September 4, 1991, in Los Angeles, California to Hugh Hefner and Kimberley Conrad. He went […]

Gordon Sondland Net Worth: How Rich is the US Ambassador to EU?

Gordon Sondland Net Worth: How Rich is the US Ambassador to EU?

Gordon Sondland is an American businessman and a diplomat. He is the United States Ambassador to the European Union. As of 2019, Gordon Sondland net worth is estimated to be $60 million. Sondland was born on July 16, 1957, in Seattle, Washington to a Jewish family. His parents Gunther Sondland and Frieda fled Europe during […]

Briana DeJesus Net Worth: How Rich is the Teen Mom Star Actually?

Briana DeJesus Net Worth: How Rich is the Teen Mom Star Actually?

Briana DeJesus is an American television personality who is best known for being a part of the reality show called Teen Mom 2 and also appeared in Teen Mom 3. As of 2019, Briana DeJesus net worth is estimated to be $500,000. She was born on May 21, 1994, in Orlando, Florida. Having had kids […]

Trending