Google Adsense News

Archive for April, 2008


Working with the Ad Review Center

Apr 1, 2008 Author: admin | Filed under: Adsense Features

ski_com_au.PNG

 As you may remember, we started enabling the Ad Review Center for publishers back in December to let you review ads placement-targeted to your site. We’ve recently enabled the Ad Review Center for more accounts and will continue rolling it out over the upcoming weeks. To get a publisher’s perspective on the new feature, we chatted with Richard Tribe, Director of ski.com.au.

Australian snow enthusiasts can visit ski.com.au to learn about resorts and travel deals, as well as news and photos of conditions. The site also serves as a skier community, with videos, forums, wikis, and several blogs. Richard has been using the Ad Review Center to ensure relevant, high-quality ads appear alongside his content. He explains that “the Ad Review Center allowed me to see who was targeting my site, and I saw a wonderful array of high-quality advertisers in there… The Ad Review Center is a great way of managing the quality and style of advertiser you would like to have associated with your publication.”

To highlight specific inventory, Richard has turned his custom channels into ad placements. For instance, he found that his live camera feeds of snow conditions drove significant advertiser interest, so he created specific snow camera ad placements. He elaborates, “That extra choice helps make my site look more attractive and allows advertisers to place their ads exactly where they want to place them.” With targetable custom channels, Richard has given advertisers more control over where their placement-targeted ads can appear, and using the Ad Review Center, he ensures those ads are relevant to his site’s audience.

To check if the Ad Review Center has been enabled for your account, visit the ‘Competitive Ad Filter’ page under the AdSense Setup tab and look for a green notification box.

When setting up the Ad Review Center in your account, we strongly recommend you keep your review preference set to the default of ‘Run ads immediately’, and review placement-targeted ads after they have run. Ads don’t participate in the auction while they are awaiting review, and ads that you have blocked can’t compete in the auction either. We ask that you consider the revenue implications before blocking ads or switching from the ‘Run immediately’ setting.

Happy skiing (and reviewing)!

Google penalizes Text Link Ads ?

Apr 1, 2008 Author: admin | Filed under: Adsense News, Google News

google-text-link-ads.png

I noticed lately that Google removed Text link ads from search result page. What’s wrong with link broker site that has PR7 ? Do search Text Link Ads in Google.

How to steal (copy) a wordpress theme

Apr 1, 2008 Author: admin | Filed under: How to, Webmasters

Copying the whole wordpress theme is not easy task but not too difficult as you think. In this post, I’m going to teach you how to copy the wordpress theme using Firefox and Firefox plugin called Firebug. But I’m afraid that my guideness will lead you to be a thief. Keep in mind that you should consider copyright and respect other’s people work. This tutorial will helps you to improve your knowledge of XHTML, CSS and the wordpress coding.

Before you start you must have Wordpress runing on your local machine, knowledge of XHTML, CSS and programming. And your computer must has Firefox installed and it’s plugin called Firebug.

So, lets get started. First, make a theme folder (name it whatever you like) under /wp-content/themes/. Visit the blog you like to copy it’s theme. Here, I’m using Wordpress’s classic theme. Copy the CSS codes from CSS tab in Firebug Windows .

css-firebug-full.png

If you see like this (shown in below). Click the link. You’ll see the full CSS codes shown in above.

css-firebug-import.png

Select all of CSS codes and paste into text editor (notepad). Put the following codes at the beginning of CSS codes previously copied into notepad. The following codes are used for wordpress theme information.

/*
Theme Name: Your theme name
Theme URI: http://yourthemeURL.com/
Description: Your theme description blah blah blah
Version: 1.1
Author: Your name
Author URI: http://www.yoursite.com/
*/

Save it as style.css into theme folder you created under wp-content/themes/.
Firebug’s HTML tab collasped the heading tag and body tag by default. Create a index.php under your theme folder. Write the following codes.

firebug-default-view.png

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>

<html xmlns=”http://www.w3.org/1999/xhtml”>
<head profile=”http://gmpg.org/xfn/11″>

</head>

<body>

</body>
</html>

language_attributes() can be used to add lang, xml:lang and dir attributes to the html tag for your theme. Put this function after xmlns attribute in html tag.

<html xmlns=”http://www.w3.org/1999/xhtml” <?php language_attributes(); ?>>

Understanding BlogInfo functions

BlogInfo returns the information you set in User Profile and General Options from your Wordpress Administration panel. Following codes are the basic information of your wordpress needed for html. Those codes must be inside heading <head> tags.

<meta http-equiv=”Content-Type” content=”<?php bloginfo(’html_type’); ?>; charset=<?php bloginfo(’charset’); ?>” />
<meta name=”generator” content=”WordPress <?php bloginfo(’version’); ?>” />
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(’rss2_url’); ?>” />
<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(’rss_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(’atom_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(’pingback_url’); ?>” />
<?php wp_get_archives(’type=monthly&format=link’); ?>
<?php wp_head(); ?>

<style type=”text/css” media=”screen”>
@import url( <?php bloginfo(’stylesheet_url’); ?> );
</style>

Use Better SEO title

<title><?php wp_title(”); ?> <?php if(is_single() || is_page() || is_category){ _e(’»’);}?><?php bloginfo(’name’); ?></title>

Title tag must be inside heading tags.

Let’s start copy the well-formed tag elements
Before you start this lesson, you must have the knowledge about html and wordpress coding. The idea is that we first copy the parent tag elements and then we copy it’s child elements. We repeat the process till all of the tags are copied.

firebug-html-tags-wordpress.jpg

Expand each tags and try to understand the functions used in the theme

It is important to know the wordpress functions used in the theme which you’re going to copy. First expand the tags and look up and determine what functions are used inside the tags.

firebug-html-tags-expand.png

An example for code shown in above,

Wordpress has bloginfo function that can generate the basic information of your wordpress I already mentioned. Right now, I’m going to change with the wordpress coding. The following codes will generate the result shown in above.

<h1><a href=”<?php bloginfo(’url’);?>“><?php bloginfo(’title’);?></a></h1>

<div class=”description”><?php bloginfo(’description’);?></div>

Many of wordpress theme creators used default posts query in the theme except custom one. Some used query_posts to make custom query for some purposed. It doesn’t matter. All are in the loop.

Understand the basic structure of Post looping

The Loop is used by WordPress to display each of your posts. Using The Loop, WordPress processes each of the posts to be displayed on the current page and formats them according to how they match specified criteria within The Loop tags. This is the basic structure of the_loop. Inside this we normally put the_title(), the_permalink(), the_content(), etc.

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

<?php endwhile; else: ?>
<?php _e(’Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>

If you’re doing programming, you can easily know that the following codes are generated from Loop.

firebug-html-tags-query.png

The following codes will output shown above

<div id=”post-<?php the_ID(); ?>” class=”post”>

</div>

Expand that div you’ll see the following sub elements

firebug-post-tags-wordpress-01.jpg

Expand h2 tag element.

firebug-post-tags-wordpress-02.jpg

the_title and the_permalink

the_title returns the post title and the_permalink returns the permalink of your post. So rewrite with the
php code

<h2>
<a title=”Permanet Link to <?php the_title();?>” rel=”bookmark” href=”<?php the_permalink();?>”>
<?php the_title();?></a>
</h2>

the_time or the_date

the_time returns the all the date of your post. and the_date only returns the date of first post which is published in same day. I prefer you to use the_time

<small><?php the_time(’F d, Y’);?></small>

Check date time format from PHP.net

the_content

the_content returns the content of post. Optional parameter is used for showing read more link if the post used <!–more–>

<div class=”entry”>
the_content (’Read the rest of this entry’);
</div>

the_tags

the_tags function return the tags link of the post. It was implemented in wordpress 2.3. the_tags(’start’, ’seperate’,’end’);

<p class=”postmetadata”>
the_tags (”Tags:”, “, “, “<br />”);
</p>

Wordpress uses header.php, index.php, single.php, page.php, category.php, search.php, comments.php, functions.php and footer.php for theme. Oh! you can use only index.php for your theme. But need to write more complicated codes when you’re using different style for different page. Let’s say, if you want main , single post and page different. You have to choose either conditional_tags or the page.

For example, the following code will show excerpt post while browsing the category, search, tags and main page. It shows full content when browsing … ? ha ha single post

<?php if (is_category() || is_search() || is_tags() || is_main()) {
the_excerpt();
}else {
the_content();
}
?>

Now I expect that you got hints to copy the wordpress theme. I think I stop now, I can’t explain you in very detail. Please learn all the theme functions from wordpress Codex. If you like this post please submit in digg, bookmark in del.icio.us, stumbleupon and float in designfloat.

Firefox


Advertising


Google Trends | Today

  • dc fireworks
  • jones beach fireworks
  • catonsville fireworks
  • nyc fireworks
  • macy s fireworks
  • boston fireworks
  • pittsburgh fireworks
  • annapolis fireworks
  • local fireworks
  • houston fireworks