Connect with us

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
3 Comments

3 Comments

  1. Pingback: WordPress Links - Week 2 2009 | WPStart.org - WordPress themes, plugins and news

  2. Austin

    January 14, 2009 at 12:12 pm

    No need to call get_post_meta() twice. Save some CPU cycles and echo the $image variable instead for the image src attribute.

    Austin’s last blog post..Paged Comments and the SEO Problem: A Solution

  3. frosty

    January 14, 2009 at 2:00 pm

    Thanks for that one, missed it..

You must be logged in to post a comment Login

Leave a Reply

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

Tips & Tricks

Disable search engine on search pages

Published

on

A good idea when trying to get the most out of your blog is usging the meta tag to tell the web bots to search & index your site. But for good SEO you should apply this code in your header.php file of your WordPress blog.

<?php if(is_search()) { ?>
<meta name="robots" content="noindex, nofollow" />
<?php }?>

This will keep your site from getting a hit from bots over duplicate entries. 🙂

Continue Reading

Tips & Tricks

Run PHP5 on your PHP4 Server

Published

on

Here is a really neat trick! Access your PHP5 while running PHP4.

If you haven’t created a .htaccess file, you may want to check out the WordPress Codex on permalink structure.

Anyway, open any text editing document and paste in this code:

AddType x-mapp-php5 .php

That’ it! Save your text document as .htaccess and your server should parse all .php files as PHP5

Continue Reading

Random Search Terms

Title

Recent Posts: Fully Net Worth . com

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 […]

Jung Joon Young Net Worth: How Rich is the K-Pop Singer?

Jung Joon Young Net Worth: How Rich is the K-Pop Singer?

Jung Joon Young is a former South Korean singer, songwriter, actor, DJ, host, and television superstar. He rose to fame in reality television talent show ‘Superstar K4’ where he finished third place. As of 2019, Jung Joon Young net worth is estimated to be $5 million. Joon-young was born on February 21, 1989, in South […]

Xanman Net Worth: How Rich is the Upcoming Rapper Actually?

Xanman Net Worth: How Rich is the Upcoming Rapper Actually?

Haile Salaam, who is better known by his stage name as Xanman, is an upcoming American rapper who is best known among the rappers on the rise of DMV. He has released several hits including “PINK,” “Gucci Down” and “Hell Yeaa”. As of 2019, Rapper Xanman net worth is estimated to be $400,000. Salaam was […]

George Zimmerman Net Worth: How Rich is Zimmerman Actually?

George Zimmerman Net Worth: How Rich is Zimmerman Actually?

George Zimmerman is an American citizen who is known for the fatal shooting of Trayvon Martin in Florida in 2012. Since then he has been the subject of media interest due to the ongoing controversy over the Trayvon Martin case. George Zimmerman net worth is not available at the moment and is under review. Zimmerman […]

Trending