Proof that Ad.ly is spam
“In-stream” advertising startup, Ad.ly, as viewed by AdBlock Plus.
“In-stream” advertising startup, Ad.ly, as viewed by AdBlock Plus.
Here’s a nifty little function you can add to you’re theme’s functions.php
to append the post category link in you’re rss feed, but the same technique can be applied to add just about anything. This can be especially useful if some sites are scraping you’re content from you’re rss feed and you want to include a link back. It utilizes the ‘the_excerpt_rss’ and ‘the_content_rss’ hooks depending on how you’re rss feed is configured.
//Add a feed link back to category level page function feed_link($content) { global $post; foreach((get_the_category()) as $category) { if ($category->category_parent == 0) { $cat_name = $category->name; $cat_ID = $category->cat_ID; $link = get_category_link( $cat_ID ); break; } } $content = $content.'<br /><a href="'.$link.'">More '.$cat_name.' posts</a>'; return $content; } add_filter('the_excerpt_rss','feed_link'); add_filter('the_content_rss','feed_link');
“Economics is not about things and tangible material objects; it is about men, their meanings and actions. Goods, commodities, and wealth and all the other notions of conduct are not elements of nature; they are elements of human meaning and conduct. He who wants to deal with them must not look at the external world; he must search for them in the meaning of acting men.”
- Ludwig von Mises, Human Action: A Treatise on Economics
70% of Lawyers who have ever lived are alive today (roughly the same, but even higher for scientists and engineers interestingly enough). – Paul Kedrosky
Is this a reason to be optimistic or sign of a bubble forming?