Author Archives: admin

Cara Membuat Auto Generate Content di Single Post

Cara Membuat Auto Generate Content di Single Post,setelah kemarin ngepost tentang cara mudah membuat halaman auto generate content di halaman search,sekarang lanjut membuat auto generate content di single php.

langsung saja tak perlu basa basi :)

step 1 .

buka single.php di theme editor kemudian pasang kode berikut ini di bagian paling atas / di atas sebelum  kode <?php get_header();?>

?Download download.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
if($_GET['s']!=''){
$ganti = array('+',' '); //tanda plus dan spasi
$urlredirect = get_settings('home') . '/search/' . str_replace($ganti, '-' ,$_GET['s']). '.html'; //tanda plus dan spasi jadi minus
header("HTTP/1.1 301 Moved Permanently");
header( "Location: $urlredirect" );
}?>
<?php define('BING_API_KEY', '');
function pete_curl_get($url, $params){$post_params = array();
foreach ($params as $key => &$val) {
if (is_array($val)) $val = implode(',', $val);
$post_params[] = $key.'='.urlencode($val);
}
$post_string = implode('&', $post_params);
$fullurl = $url."?".$post_string;
$ch = curl_init();curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);curl_setopt($ch, CURLOPT_URL, $fullurl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040608'); //kamu bisa pake user agent yang lain, lihat listnya di sini www.user-agents.org
$result = curl_exec($ch);curl_close($ch);
return $result;
}function perform_bing_web_search($termstring){$searchurl = 'http://api.bing.net/json.aspx?';
$searchurl .= 'AppId='.'ABCDEFG'; //ganti ABCDEFG dengan kode api BING
$searchurl .= '&Query='.urlencode($termstring);
$searchurl .= '&Sources=Web';
$searchurl .= '&Web.Count=10'; //jumlah list situs yang dihasilkan
$searchurl .= '&Web.Offset=0';
$searchurl .= '&Web.Options=DisableHostCollapsing+DisableQueryAlterations';
$searchurl .= '&JsonType=raw';
$response = pete_curl_get($searchurl, array());
$responseobject = json_decode($response, true);if ($responseobject['SearchResponse']['Web']['Total']==0)return array();
$allresponseresults = $responseobject['SearchResponse']['Web']['Results'];
$result = array();
foreach ($allresponseresults as $responseresult){$result[] = array('url' => $responseresult['Url'],'title' => $responseresult['Title'],'abstract' => $responseresult['Description'],);
}return $result;
}if (isset($_REQUEST['s'])) {
$termstring = urldecode($_REQUEST['s']);
} else {
$termstring = '';}?>
<?php
function ambiljudul($title){
$title = get_the_title();
$title = trim($title);
return ($title);
}?>

step 2.

kemudian kopi dan paste kode berikut ini di mana mau di tampilkan,sebagai contoh kalau mau di tampilkan setelah post maka pasang kode setelah kode <?php the_content (‘read more &raquo’;); ?>

berikut ini kodenya

?Download download.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php function CleanFileNameBan($result){
$bannedkey = array("porn","adult","sex"); //masukkan kata kunci satu persatu untuk menghindari kata-kata yang tidak diinginkan.
$result = str_replace($bannedkey, '',$result);
$result = trim($result);
return $result;
}
function hilangkan_spesial_karakter($result) { //fungsi hilangkan semua spesial karakter pada Title
$result = strip_tags($result);
$result = preg_replace('/&.+?;/', '', $result);
$result = preg_replace('/s+/', ' ', $result);
$result = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', ' ', $result);
$result = preg_replace('|-+|', ' ', $result);
$result = preg_replace('/&#?[a-z0-9]+;/i','',$result);
$result = preg_replace('/[^%A-Za-z0-9 _-]/', ' ', $result);
$result = trim($result, ' ');
return $result;
}
function ubah_tanda($result) { //fungsi ubah spasi jadi minus pada permalink title
$result = strtolower($result);
$result = preg_replace('/&.+?;/', '', $result);
$result = preg_replace('/s+/', '-', $result);
$result = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '-', $result);
$result = preg_replace('|-+|', '-', $result);
$result = preg_replace('/&#?[a-z0-9]+;/i','',$result);
$result = preg_replace('/[^%A-Za-z0-9 _-]/', '-', $result);
$result = trim($result, '-');
return $result;
}
?>
<?php $termstring = ambiljudul($title) ?>
<h3>related on another site</h3><?php if (ambiljudul($title)!='') {
$bingresults = perform_bing_web_search($termstring);
//Kamu bisa ganti kode <h1> serta test yang ada sesuai dengan kode html dan text keinginan kamu begitu juga dengan yang lainnya
foreach ($bingresults as $result) {
print '<div>';
print '<div>';
echo ('<hr/>');
print '<a href="'.$result['url'].'" rel="nofollow"><img align="left" width="50px" height="50px"style="margin:5px 5px 5px 0px; border:1px solid #000;" src="http://open.thumbshots.org/image.aspx?url='.$result['url'].'" title="'.CleanFileNameBan(hilangkan_spesial_karakter($result['title'])).'"/></a>';
print '<h3 ><a href="'. get_settings('home').'/search/'.ubah_tanda(CleanFileNameBan(hilangkan_spesial_karakter($result['title']))).'.html">'.CleanFileNameBan(hilangkan_spesial_karakter($result['title'])).'</a></h3>';
print ''.CleanFileNameBan(strip_tags($result['abstract'])).'';
print '<div>Related Tags:<a href="'. get_settings('home').'/search/'.ubah_tanda(CleanFileNameBan(hilangkan_spesial_karakter($result['title']))).'.html">'.CleanFileNameBan(hilangkan_spesial_karakter($result['title'])).'</a> ';
print '</div>';
print '</div>';
print '</div>';
print '<div style="clear:both;"></div>';
}
}
?>

klik save kemudian test hasilnya.

The Verizon iPhone

The Verizon iPhone,Apple and Verizon have made a million dreams come true: the iPhone is coming to Big Red. After talking up his new LTE network a bit, Verizon CEO Lowell McAdam confirmed a CDMA (non-LTE) version of the iPhone 4 is coming to Verizon Wireless next month. Talks started way back in 2008, and the phone has been in testing for a year — it sounds like they wanted to get this one right. Current Verizon customers will be able to pre-order on February 3rd for the standard $200 price for the 16GB model on a two year agreement, $300 for the 32GB version — everyone else can order on February 10th (see it compared with AT&T’s iPhone 4). Just to clarify and put any wild rumors to bed, the phone is Verizon 3G (EV-DO) only, no 4G data or GSM roaming. It’s not a world phone or an AT&T + Verizon phone, it’s just a Verizon phone.

engadget

Prosense Adsense Ready Seo With Agc WordPress Theme

prosenseProsense Adsense Ready Seo With Agc WordPress Theme,an Adsense Ready SEO WordPress theme that is designed by doshdosh and The Wrong Advices. A clean looking theme that reeks of professionalism and style, ProSense is created with optimal monetization, web usability and search engines in mind.

This fast loading and easily customizable theme is built to accommodate heavy contextual ad monetization: Its very infrastructure is designed to direct maximum attention to Adsense ads while preserving as much focus as possible on your blog content.

Featuring built-in ad units with optimized placement and blending, ProSense’s broad design scheme makes it easily suitable for a wide variety of niche topics or content types.

A Guide to the Prosense Theme Features

Prosense was created with the aim of including several features which we knew most bloggers would find useful. One of these is the freedom to choose which type of ad units should be automatically displayed.

While designed to effortlessly incorporate a large amount of Adsense ads, ProSense allows you to have complete control over the amount of ads displayed and therefore is even suitable for bloggers who are not seeking to heavily monetize their blogs.

Here are some of the theme features, some of which are currently exclusive to ProSense:

* Separate and Distinct Ad Blocks. The use of distinct theme files for ad codes allows for easy editing and insertion of Adsense units. These ad blocks can also be used to insert other types of advertisements as well and are not solely limited to Adsense use.

* Multiple Ad Display Options. Unlike other Adsense Ready themes, ProSense allows you to choose between either banner or rectangle ads for the single post page, thus allowing you more flexibility when it comes to ad blending.

* Hassle-free convenience and ease of use. You’ll only have to insert your Adsense publisher ID in the default ad units and you’re done. It should only take a minute or two to set up ProSense perfectly.

* Integrated Ad placement on the homepage. Unlike most Adsense ready themes currently available, ProSense blends a 468 x 60 banner unit between the second and third post on the blog homepage.

This enables you to display relevant ads to search visitors who arrive at your homepage, as they are more likely to scroll and scan through your posts.The inclusion of a well-blended horizontal link unit near the top of the homepage also attracts navigational-style visitor clicks.

* Highly Optimized Ad units on post pages. There are two types of ad blocks on both the top and bottom of the single post page. You can choose between using a 468 x 60 banner and 300 x 250 rectangle at the top of the post or a 468 x 60 banner and 336 x 280 large rectangle at the bottom of the post.

The ability to designate and match different ad units is exclusive to ProSense and is currently not available for other Adsense Ready themes.

* Pre-blended Adsense unit colors. All Adsense unit colors are tweaked to match the blog’s link and background colors. There is absolutely no need for you to spend time picking the appropriate ad colors.

* Search Engine Optimized site structure. ProSense is built from good, clean code that validates well. The CSS positioning is written so that your blog content is prioritized in the source code as this may help to improve search engine crawling and ranking. Dynamic and descriptive title tags are also used for each blog page.

* Compatible with WordPress 2.0+. ProSense has been tested with the latest 2.2 Getz version of WordPress and no problems were experienced.

* Widget-Ready. If you’re a widget lover, you’ll be happy to know that Prosense allows you to easily install and use widgets to complement your content and advertising scheme.

Important User Notes

Please remember to change the Publisher ID for the default Adsense units after you upload the theme! You’ll need to insert your personal Adsense publisher id (e.g. pub-xxxxxx) in the various Adsense units that you decide to use.

All the ad units are found in the following theme files:

Single Post Pages:

* adsense_singlepost_top_square.php – 300 x 250 Medium Rectangle
* adsense_singlepost_top_banner.php – 468 x 60 Banner
* adsense_singlepost_bottom_square.php – 336 x 280 Rectangle
* adsense_singlepost_bottom_banner.php – 468 x 60 Banner

Homepage:

* adsense_sidebar.php – 160 x 600 Skyscraper
* adsense_homepage_linkunit.php – 468×15_4 Link Unit
* adsense_homepage_banner.php – 468 x 60 Skyscraper

Agc ready on single with link to search page

agc ready on search page with link to source

download prosense blue agc here

Google Adsense How Formatting And Color Schemes Can Make Or Break Your Click Count!

Google Adsense How Formatting And Color Schemes Can Make Or Break Your Click Count! Google Adsense: How Formatting And Color Schemes Can Make Or Break Your Click Count!,With Google adsense even the slightest adjustment on your website can make a world of a difference. Adsense requires little effort at all on your part, but the changes you can control can vary the amount of clicks you receive. That is why the formatting and colors you use for the ad will allow you to collect a higher income and raise your adsense revenue.

When placing the Google adsense it is crucial you place it directly in the heart of your content. You want the ad to be noticed but at the same time not take away from the content on your website. You want the adsense to compliment your content, not BE your content. Square and wide rectangular ads tend to fair the best and receive the most clicks for people.

You want to place your adsense above the main fold to maximize your clicks. The higher up on the page your ads are the more likely people will click on them. This is because not everyone reads all the content on your website, but by putting your adsense towards the top it is one of the first things they see.

Placing objects around the ads are a sure way to increase your adsense revenue as well. If you place images next to or above, the ads the images will draw the readers’ eyes towards your ads with more potential for people to click on them. You do not want to place too many images as this will drop the quality of your page, but placing one or two images will look professional and serve its purpose at the same time.

When adjusting the background color and border color of your google adsense box, you don’t want to make it stand out from the rest of the page. Have the background and border colors be very similar, if not the same color, as the background of your webpage itself. The color of the ad link URL should always be a lighter shade than that of the text. If the text is black then make your adlink a light gray shade. All in all your goal is to make the adsense have the same color scheme as your website has to help it blend in as oppose to looking like an ad that stands out.

It is important that you pay attention to the formatting of your Google adsense and maybe even adjust it from time to time. Make sure to keep records of how you fair as far as clicks go if you do make an adjustment. Testing will help you find what works best for your website. While it may seem like a very little adjustment on your webpage, it will ultimately determine how many clicks you receive. The formatting and color schemes you use are a vital aspect towards your success with adsense.

cara mudah membuat halaman auto generate content (AGC)

cara mudah membuat halaman auto generate content (AGC),oke langsung saja,sebenarnya saya gak pandai bikin tutorial apalagi utak atik script php,html aja masih mumet :) ini tutorial saya ringkas saja dari beberapa tutorial yang saya temukan di beberapa tempat

cara membuat AGC

step 1.
dapatkan Bing Search API lebih dulu di sini http://www.bing.com/developers/createapp.aspx (gak perlu tutorialkan untuk mendapatkan api dari bing ? :) )

step 2.

Buka editor search.php template kamu kemudian hapus kode <?php get_header();?>

kemudian ganti dengan kode berikut ini

?Download download.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
if($_GET['s']!=''){
$urlredirect = get_settings('home') . '/search/' . str_replace(' ', '-' ,$_GET['s']). '.html';
header("HTTP/1.1 301 Moved Permanently");
header( "Location: $urlredirect" );
}
?>
<?php
define('BING_API_KEY', '');
function pete_curl_get($url, $params)
{
$post_params = array();
foreach ($params as $key => &$val) {
if (is_array($val)) $val = implode(',', $val);
$post_params[] = $key.'='.urlencode($val);
}
$post_string = implode('&', $post_params);
$fullurl = $url."?".$post_string;
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_URL, $fullurl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mailana (curl)');
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
function perform_bing_web_search($termstring)
{
$searchurl = 'http://api.bing.net/json.aspx?';
$searchurl .= 'AppId='.'ganti dengan kode api kamu dari bing';
$searchurl .= '&Query='.urlencode($termstring);
$searchurl .= '&Sources=Web';
$searchurl .= '&Web.Count=10';
$searchurl .= '&Web.Offset=0';
$searchurl .= '&Web.Options=DisableHostCollapsing+DisableQueryAlterations';
$searchurl .= '&JsonType=raw';
$response = pete_curl_get($searchurl, array());
$responseobject = json_decode($response, true);
if ($responseobject['SearchResponse']['Web']['Total']==0)
return array();
$allresponseresults = $responseobject['SearchResponse']['Web']['Results'];
$result = array();
foreach ($allresponseresults as $responseresult)
{
$result[] = array(
'url' => $responseresult['Url'],
'title' => $responseresult['Title'],
'abstract' => $responseresult['Description'],
);
}
return $result;
}
if (isset($_REQUEST['s'])) {
$termstring = urldecode($_REQUEST['s']);
} else {
$termstring = '';
}
get_header(); ?>

kemudian cari kode  <?php endif;?> dan pasang kode berikut ini di atasnya

?Download download.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
// If this is a search
if (is_search()) {
$s = str_replace('-', ' ', $s);
echo '<h2>';
echo 'Search Result for: <a href="'.$result['permalink'].'">'.$s.'</a>';
echo '</h2>';
// If this is a category archive
}
?>
<?php
function CleanFileNameBan($result){
$bannedkey = array("porn","adult","sex"); //masukkan kata kunci satu persatu untuk menghindari kata-kata yang tidak diinginkan.
$result = str_replace($bannedkey, '',$result);
$result = trim($result);
return $result;
}
function hilangkan_spesial_karakter($result) { //fungsi hilangkan semua spesial karakter pada Title
$result = strip_tags($result);
$result = preg_replace('/&.+?;/', '', $result);
$result = preg_replace('/s+/', ' ', $result);
$result = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', ' ', $result);
$result = preg_replace('|-+|', ' ', $result);
$result = preg_replace('/&#?[a-z0-9]+;/i','',$result);
$result = preg_replace('/[^%A-Za-z0-9 _-]/', ' ', $result);
$result = trim($result, ' ');
return $result;
}
function ubah_tanda($result) { //fungsi ubah spasi jadi minus pada permalink title
$result = strtolower($result);
$result = preg_replace('/&.+?;/', '', $result);
$result = preg_replace('/s+/', '-', $result);
$result = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '-', $result);
$result = preg_replace('|-+|', '-', $result);
$result = preg_replace('/&#?[a-z0-9]+;/i','',$result);
$result = preg_replace('/[^%A-Za-z0-9 _-]/', '-', $result);
$result = trim($result, '-');
return $result;
}
?>
<?php $termstring=$s ;?>
<?php
if ($termstring!='') {
$bingresults = perform_bing_web_search($termstring);
foreach ($bingresults as $result) {
print '<div><h2><a href="'. get_settings('home').'/search/'.ubah_tanda(CleanFileNameBan(hilangkan_spesial_karakter($result['title']))).'.html">'.CleanFileNameBan(hilangkan_spesial_karakter($result['title'])).'</a></h2>';
print '<p>'.$result['abstract'].'</p>';
print '<p>'.$result['url'].'</p></div>';
}
}
?>

simpan dan test hasilnya

PS : SEGALA RESIKO DI TANGGUNG PENUMPANG :)

Google Adsense is best source for website income

Google Adsense is best source for website income,Website requires lot of money for maintenance. Therefore main aim of webmaster is earn handsome income using their website.

Now large number of website in the world provides online money earning opportunities. Google AdSense is one of the best sources for website income.

AdSense is the name of name of the system introduced by Google placing its AdWards ads to non-Google sites. AdWards are the source of your AdSense income. AdWards are small, text only advertisement purchased by the people who want to advertise websites of Google network.

Google AdSense gives you the ability to earn advertising revenue from every single page on your website. Add a Google search box to your site and earn money. Some Google ads pay $1 per click.

If your site contain all about survey hens Google will display that ads relevant to survey on that site. Google will send you a check for any amount you earn over $100 each month. If you don’t earn $100 in a month, your balance carried over and added to your next month’s earnings and so on until your balance exceeds $100.

People who make the most AdSense income are the people who get high traffic to their website. You drive more traffic to your site increase your Adsense income.

If your website gets high traffic your Google Adsense income also high. Some webmaster earns more than $1000 per day. Low traffic website earn below $1 per day.

Design content based website and get targeted traffic is best tips for increase Google AdSense income.

Now large number of website in the world provides free article content for webmaster.
http://www.kokkada.com provides free article contents about 198 categories.

Google Adsense Basics

Google Adsense Basics,You’ve heard about Google AdSense, but how does it work? Can you really make money by just allowing Google to place ads on your website? And if so, how much money can you make? The following are the most informational Google AdSense basics you need to know.

You must first have a website before you can apply for a Google Adsense account and start profiting from Google AdSense. You are more likely to be rejected if you use a free domain, so invest in your own domain. And make sure that your website makes sense; that may sound obvious, but if you are running a website that is disorganized with random content scattered all over the place, you will not be viewed as professional and will most likely be rejected.

Once your site has been accepted, Google will give you a code to paste on your site, thus enabling them to start placing ads on your site that are relevant to the content of your site. For example, if your website is about creating scrapbooks, Google might place ads on your site dealing with places to purchase scrapbook materials.

Now, what about making money? Google makes money by advertising. So, by placing ads on your site, you are helping them to advertise by providing them with a place to display their ads. Every time a visitor to your site clicks on one of the ads that Google has placed on your site, you receive a certain percent of the money. It’s a win/win situation. Google AdSense allows you to view your account and earnings information at any time, and once a month you will receive a check for the amount of money you earned.

Of course, these are just the Google AdSense basics, and more detailed information can be found at www.google.com/adsense.

So, if you’re dedicated to the website you operate, why not make an extra profit from it as well? Or, maybe you’re looking for a way to make some extra cash on the side and are interested in a subject enough to create a website for it. Either way, consider these Google AdSense basics and check into opening a Google AdSense account of your own.

The Virginian Pilot

The Virginian Pilot,By Bob Molinaro,, The Virginian-Pilot, Norfolk, Va.

Jan. 01–Hot seat: Tom Coughlin’s job is said to be on the line when the Giants play the Redskins on Sunday. It shouldn’t be. Didn’t Coughlin go through this before, when he was blamed for everything that went wrong with the Giants, only to regroup and win a Super Bowl? He’s the same coach now as he was then. What’s hurting the Giants most is a defense that appears to have been highly overrated.

Not welcome Seeing as how the Seattle Seahawks are still alive for postseason play despite losing seven or their past nine games, I propose a new NFL rule that prohibits any team from making the playoffs with a record that wouldn’t qualify it for a bowl appearance.

Impatient Old Dominion reports that highly-regarded redshirt sophomore quarterback Dominique Blackman is transferring for “personal reasons.” Translation: He doesn’t want to play behind Thomas DeMarco next season. It’s too bad for ODU, which thought it had a future star in Blackman, but defections are common in every program, especially at the crowded quarterback position.

In passing The safest prediction about the Orange Bowl meeting between Virginia Tech and Stanford is that it will be Jim Harbaugh’s final game as Stanford coach.

Idle thought No result makes more sense than Army winning the Armed Forces Bowl.

Wrong message We’re accustomed to hypocrisy in college athletics, but let’s be serious: once Terrelle Pryor and Co. were found to have violated NCAA rules, they shouldn’t have been allowed to play for Ohio State in the Sugar Bowl. If Ohio State were an actual family, the grown ups in charge would be guilty of bad parenting.

Arms race The reduced role of running backs in the NFL becomes more noticeable every year. Quarterback play decides everything, it seems, both good and bad. The passing game is entertaining, but I miss the days when running backs played bigger roles. A little more balance on offense would be welcome.

Captive Tuesday’s primetime Vikings-Eagles game on NBC drew a viewing audience 25 percent larger than last year’s Week 16 game on Sunday Night Football between the Cowboys and Redskins. Michael Vick was the prime attraction, but it didn’t hurt ratings that East Coast blizzards kept millions of people trapped inside.

Mouthing off Are Americans really the “wussies” Pennsylvania governor Ed Rendell said we are? I don’t know about that, but I can recognize a publicity hound when I hear one.

Quick hit The critical and popular success of the “The Fighter” is further proof that boxing is a lot more popular as cinema than sport.

Screen gem “The King’s Speech” is another example of the Brits creating a movie masterpiece from a buried bit of English history.

Numbers game Though it’s not an official NFL statistical category, people who keep track of “quarterback hurries” report that Chris Long, Rams defensive lineman and former U.Va. star, leads the league.

Bottom line As reported by Golf Digest, when Tiger Woods’ earnings on and off the course in 2010 declined by $48 million from 2009, he lost more money than any other player made. No need to take up a collection for Woods, though. He still managed to take in a reported $74 million last year.

At the top There will always be haters, especially where Duke basketball is concerned, but if you don’t appreciate Mike Krzyzewski’s success and demeanor and can’t acknowledge that he’s the standard to which other coaches aspire, you might want to check yourself.

Rising How can a young, exciting NBA player with 20 consecutive double-doubles in points and rebounds and an assortment of the season’s most spectacular dunks remain a relative mystery to the average fan? By playing for the historically bad and irrelevant L.A. Clippers. Welcome to Blake Griffin’s world.

Bob Molinaro, (757) 446-2373, bob.molinaro@pilotonline.com

—–

To see more of the The Virginian-Pilot, or to subscribe to the newspaper, go to http://www.pilotonline.com.
source

Post News Free Wp Theme Agc Ready

post newsPost News Free Wp Theme Agc Ready
Post News is clean design free premium WordPress theme. Suitable for any niche, especially for news sites. Theme Options at admin panel.

Features:

* Admin Options
* Featured Video
* Animated drop down menu
* 125×125 pixels adbox ready (easy editable from admin options)
* Three columns
* Gravatar on Comments
* Twitter Ready
* Social Networks sharing. No plugin required
* Compatible with latest WordPress versions
* Widgets Ready
* SEO Optimized
* Fixed width
* Tested and compatible with all major browsers: IE, FF, Safari

Admin Options Features:

* Featured Video
* Twitter
* 125×125 pixels banners
* Sidebar Ads/Banners
* Header and Footer script codes

plus features :
AGC Ready :
AGC + thumbnail on single and search
demo (non AGC) http://newwpthemes.com/demo/PostNews/
download (non AGC) http://newwpthemes.com/downloads/?theme=post-news

download AGC ready here http://www.fileserve.com/file/qCYBAdS

menjawab pertanyaan dari bloggers u
ntuk merubah merubah permalink biar gak muter silahkan cari kode seperti ini dalam file search.php

?Download download.txt
1
<a href="'. get_settings('home').'/search/'.ubah_tanda(BannedKeywordLagi(hilangkan_karakter($result['title']))).'.html">'.htmlspecialchars(BannedKeywordLagi(hilangkan_karakter($result['title']))).'</a></h3>

kemudian ganti dengan kode

?Download download.txt
1
<a href="'.$result['url'].'" title="'.htmlspecialchars(BannedKeywordLagi(hilangkan_karakter($result['title']))).'">'.htmlspecialchars(BannedKeywordLagi(hilangkan_karakter($result['title']))).'</a></h3>