[How-To Guide] Add Adsense Ad Below Post Title In Thesis WordPress Theme
Add to custom_functions.php:
function below_post_title() {
if (is_single()) { ?>
Your AdSense Ad Code Here !
<?php }
}
add_action('thesis_hook_before_post', 'below_post_title');
- 126 letture
How to: Insert ads on your RSS feed
Did you ever wonder how some people are able to display ads on their rss feed? Sure, you can modify core files to do it, but that’s not a good idea at all. Here’s a clean way to insert ads (or anything) on your rss feed, without having to hack any core file.
<?php
function insertAds($content) {
$content = $content.'
Have you visited WpRecipes today?
';
return $content;
}
add_filter('the_excerpt_rss', 'insertAds');
add_filter('the_content_rss', 'insertAds');
?>
- 455 letture
Wordpress Plugin: Search Engine Keywords
* Visualizza ai visitatori che provengono dai motori di ricerca, un messaggio personalizzato in base alla parola chiave che hanno cercato.
Introduzione
Ho creato un plugin per Wordpress rilasciato sotto licenza GNU GPL che permette di correlare le parole chiave cercata da un visitatore per giungere al vostro sito proveniendo dai motori di ricerca, visualizzando un messaggio personalizzato che può essere qualsiasi cosa: alcuni links di affiliate marketing referral, indicazioni utili per trovare quello che il visitatore sta cercando, un saluto al visitatore, insomma qualsiasi cosa vi v
- Leggi tutto
- 465 letture
Search Ads WordPress Plugin
I am glad to finally release the Search Ads WordPress plugin, which allows you to display content blended ads only to search engine traffic, in a quick and simple way. There are a couple of advantages connected with this strategy. First of all you will be able to add another revenue stream to your site, as organic traffic tends to yield a very high CTR. Secondly, you won’t annoy your regular visitors, because they won’t see the ads unless they come to your site via a search engine.
Here is how it works.
- Leggi tutto
- 399 letture
10 Killer WordPress Hacks
In this article, we’ll show you 10 new useful killer WordPress hacks to unleash the power of your favorite blogging engine. Each hack has an accompanying explanation, so you’ll not only unleash the power of WordPress but also understand how it works.
1. Display AdSense Ads to Search Engines Visitors Only
2. Avoid Duplicate Posts in Multiple Loops
3. Replacing “Next” and “Previous” Page Links with Pagination
4. Automatically Get Images on Post Content
5. Create a “Send to Twitter” Button
6. Using Normal Quotes Instead of Curly Quotes
7.
- Leggi tutto
- 385 letture
Automatic Post Creation with Wordpress, PHP, and XML-RPC
So, for those of you who read my last blog post, you might notice that I was having issues with a script I wrote to create a new post in Wordpress when it came time to upgrade the Wordpress code. The SQL internals were modified, and I was inserting directly in to the database (yes, I know, I broke a cardinal rule). I needed an alternative way to insert information in to the database that would be much more future-proof. I remembered about XML-RPC.
It took me some time to find answers to questions I had about XML-RPC and the Wordpress’ API.
- Leggi tutto
- 1201 letture
Installing WordPress in Your Language
Although WordPress displays in U.S. English by default, the software has the built-in capability to be used in any language. The WordPress community has already translated WordPress into many languages, and there are Themes, translation files, and support available in many other languages (see WordPress in Your Language).
To install an international version of WordPress, you have two choices.
1. Follow the instructions provided for your language listed at WordPress in Your Language
2.
- Leggi tutto
- 331 letture
How To : Insert Adsense Code into Single Post in Thesis Themes
SocialBlogr is running on Thesis Theme now, it’s the best SEO friendly WordPress theme ever. But, Hybrid is also great for alternative if you don’t have extra budget. Ok, Thesis is a framework, so we couldn’t manage it like a ordinary WordPress themes. Thesis has so many hook inside of the framework, there are specific functions to control each section in the header, body and footer. To insert adsense code into Thesis themes we have to follow the Thesis’s rules.
All addition functions should be inserted into custom_functions.php.
- Leggi tutto
- 190 letture
100 Free High Quality WordPress Themes: 2010 Edition
It’s hard to believe that a year has passed since our last WordPress theme collection, but there you have it — the time has come again. Once a year we feature the most useful and interesting WordPress-themes that we are collecting over months and present them in a nice quick overview. The collections from 2007, 2008 and last year are still useful, but some of the themes are outdated or updated now.
Looking back over these previous theme articles, you can clearly see how and why WordPress has rapidly matured into the CMS powerhouse it is today.
- Leggi tutto
- 305 letture
Arriva WordPress Seo Edition
WordPress Seo Edition è un progetto che doveva essere messo online da tempo, pronto ormai in prima versione già da qualche giorno.
Finalmente, con l’apertura ufficiale di SeoPoint, viene reso pubblico questo nuovo pacchetto di WordPress modificato che permetterà a tutti i WebMaster e Blogger di avere un sito o un blog ben ottimizzato per il posizionamento nei motori di ricerca.
Nel pacchetto, oltre alla versione 2.6.2 di WordPress sono compresi:
* Temi ottimizzati SEO da applicare al proprio blog o sito
* Plugins per l’ottimizzazione SEO del proprio blog o sito
* Un Read
- Leggi tutto
- 241 letture