Connect with us

Tips & Tricks

Remove the title attribute using jQuery

Published

on

In WordPress, when you use wp_page_menu your anchor attribute’s usually carry a title with the same name. I’m not sure if it’s correct to do this, but it bother me when I hover over a page menu navigation link and I get a hover of the title.

So on my site I used jQuery to remove the title:

$("#nav a").removeAttr("title");

Pretty simple huh?

Themes

Jon Asked: How to add thumbnails above post on the THiCK theme

Published

on

I was asked by a reader:

I’m using the THiCK theme for my new design blog. I noticed you were able to add thumbnail images above your blog posts on the home page. What would I need to do to enable this on my blog?

Well Jon, this can be done very simple, since the theme is already using the Tim Thumb script.

What you will need to do is find in your index.php file, the second loop. Which you can find on line 40.

<?php query_posts('offset=1&showposts=' . get_option('woo_other_entries') . '&cat=-' . $GLOBALS['ex_asides'] ); ?>

<?php while (have_posts()) : the_post(); ?>	

	<div class="post">
		<h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
		<div class="post-meta"><?php the_time('j/m/y'); ?> <span>|</span> <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?></div>
		<?php the_excerpt(); ?>
	</div>

<?php endwhile; ?>

Now we are going to add in the code. At line 43 we are going to add:

<?php if (get_option('woo_resize')) { // Check if we should use the image resizer ?>
                    <a title="Continue reading this entry..." href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php echo bloginfo('template_url'); ?>/thumb.php?src=<?php echo get_post_meta($post->ID, "image", $single = true); ?>&amp;h=80&amp;w=280&amp;zc=1&amp;q=90" alt="<?php the_title(); ?>" /></a>
                <?php } else { ?>
                    <a title="Continue reading this entry..." href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php echo get_post_meta($post->ID, "image", $single = true); ?>" alt="<?php the_title(); ?>" /></a>
                <?php } ?>

That’s it, just make sure that in the THiCK options panel you choose the “resize” option, or the image might break the layout. Or you may change the this code: $post->ID, "image", to: $post->ID, "image_thumb", and use a separate image for the lower blog.

Continue Reading

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>' ); ?>
Continue Reading

Tips & Tricks

How to: Show what a user is searching for in the title

Published

on

Want to show what any user was searching for?
It is simple, just add this line where your title would be.

<h1>Browsing search results for <strong>"<?php the_search_query() ?>"</strong>.</h1>

The important line is the_search_query()

Continue Reading

Random Search Terms

Title

Recent Posts: Fully Net Worth . com

Court Westcott Net Worth- How Rich is Kameron Westcott’s husband?

Court Westcott Net Worth- How Rich is Kameron Westcott’s husband?

Court Westcott is a venture capitalist who is a managing partner of the company named Westcott LLC which was founded by his father Carl Westcott with the company being a personal investment platform for entrepreneurship. The Westcott family is known to be one of the prestigious families from Dallas. As of 2019, Court Westcott net […]

Kellen Winslow Jr Net Worth: How Rich is the NFL Player Actually?

Kellen Winslow Jr Net Worth: How Rich is the NFL Player Actually?

Kellen Winslow Jr is a former professional football player who played a tight end in the National Football League. Winslow Jr. has played for Tampa Bay Buccaneers, New England Patriots, and New York Jets during his time at NFL. As of 2019, Kellen Winslow Jr net worth is estimated to be $12 million. Winslow was […]

Brother Nature Net Worth: How Rich is Kelvin Pena Actually?

Brother Nature Net Worth: How Rich is Kelvin Pena Actually?

Kelvin Pena who is known by his Internet name as ‘Brother Nature’ is an American Internet superstar best known for his funny and comedic videos. As of 2019, Brother Nature net worth is estimated to be $700,000. Pena was born on August 11, 1998, in New York to a Dominican father and a Puerto Rican […]

Iann Dior Net Worth: How Rich is the Emerging Rapper Now?

Iann Dior Net Worth: How Rich is the Emerging Rapper Now?

Michael Ian Olmo, who is better known by his stage name as Iann Dior, is a Puerto Rican rapper and songwriter. He is best known for his songs “Emotions” and “Gone Girl” which have received millions of views worldwide. Iann Dior net worth as of 2019 is estimated to be $300,000. Dior was born on […]

Trending