These are items shared by
Chuqui

How To: Building a Google Custom Search Engine (GCSE) into Your WordPress Blog
Kyle Eslick via Hack WordPress on Wed, 03 Dec. 2008
Over the holiday weekend I decided to spend some time cleaning up a few of my websites and while doing this, I ended up installing Google’s Custom Search Engine on a couple of my WordPress blogs (as of this post I haven’t done this on WP Hacks yet, but will probably end up doing so here as well). For people wondering how to easily install Google’s readmore
View Item

How to: Easily get the value of a custom field
jbj via WpRecipes.com on Wed, 03 Dec. 2008
Here’s the function. You have to paste it on your theme functions.php file. If your theme doesn’t have a file named functions.php, create one. function get_custom_field_value($szKey, $bPrint = false) { global $post; $szValue = get_post_meta($post->ID, $szKey, true); if ( $bPrint == false ) return $szValue; else echo $szValue; } Now, to call the fu readmore
View Item

Search for ivory-billed woodpecker to begin anew (AP)
(unknown author) via Yahoo! News: Science News on Tue, 02 Dec. 2008
readmore
View Item

How to: Deny comment posting to no referrer requests
jbj via WpRecipes.com on Tue, 02 Dec. 2008
To achieve this recipe, simple paste the following code on your .htaccess file, located at the root of your WordPress install. Don’t forget to specify your blog url on line 4. Remember to ALWAYS create a backup when editing the .htaccess file. RewriteEngine On RewriteCond %{REQUEST_METHOD} POST RewriteCond %{REQUEST_URI} .wp-comments-post\.php* readmore
View Item

Is Blogging Dead? (Wait: Is It That Time Of Year Again?)
Tony Hung via Deep Jive Interests on Mon, 01 Dec. 2008
The “is blogging dead” meme (although no one has the chutzpah to call it what it is) rears its interesting head today over at the FastForward Blog — and much like other memes about blogging (there is / is not an A-list, your blog really is / is not a blog if you have / do not have comments, its impos readmore
View Item

Obama Puts Change.gov Under Creative Commons
Marshall Kirkpatrick via ReadWriteWeb on Mon, 01 Dec. 2008
Last week Barack Obama's Presidential transition website Change.gov added OpenID login for commenters and now the entire site has been put under a Creative Commons li readmore
View Item

How to: Create a meta description function for your WordPress blog
jbj via WpRecipes.com on Mon, 01 Dec. 2008
http://www.wprecipes.com/wordpress-seo-add-meta-description-to-your-theme Open your header.php file. Paste the following code anywhere within the <head> and </head> tags: <meta name="description" content=" <?php if ( (is_home()) || (is_front_page()) ) { echo ('Your main description goes here'); } elseif(is_category()) { echo categor readmore
View Item

Wordpress mechanic - conditional sidebar
The wordpress guy via Wordpress guy on Fri, 28 Nov. 2008
So you want to have a different ad, sub menu, or enquiry form in different sections of your website. How do you achieve this? It is amazingly simple to achieve if you only want to distinguish between types of pages, i.e. search pages, homepage, category pages etc…: <ul id=”nav”> <li readmore
View Item

Thanksgiving for 10 blunders Apple didn’t commit
Kontra via counternotions on Thu, 27 Nov. 2008
It’s Thanksgiving again. Time to reflect and count our blessings. For those touched by Apple’s products and weltanschauung, an opportunity to give thanks to Steve Jobs &a readmore
View Item

About those “rampant” iPhone 2.2 problems…
MG Siegler via VentureBeat on Thu, 27 Nov. 2008
When I saw the headlines on CNET’s iPhone Atlas blog proclaiming that “iPhone OS 2.2 Problems Run Rampant,” I scratched my head. After all, I probably use the readmore
View Item

Quit Whining About All-Star Voting
Alanah McGinley via Kuklas Korner on Thu, 27 Nov. 2008
From Scott Morrison at CBC: The league will still make sure that best players are represented in the game. Chances are at least a couple of those Canadiens would make it any way. It’s curious that a game, the all-star game, that is annually mocked and criticized for what it is, can muster so much emotion from people. There is, of course, a simple wa readmore
View Item

Hidden Redwood Shores
DeeCoz via Drive-by Birding on Wed, 26 Nov. 2008
From Redwood Shores - Nob Hill readmore
View Item

Introducing Tack Sharp
James Duncan Davidson via James Duncan Davidson on Tue, 25 Nov. 2008
A while ago, I made a guest appearance on The Talk Show with Dan Benjamin and John Gruber to talk about photography. The episode went over well and we’ve talked about doing it again. And then, Dan and I talked a bit more and decided to dive all the way in. To that end, we’re launching Tack Sharp, a photography related p readmore
View Item

Non-Invasive Device Mimics Effects Of Gastric Bypass, Alters Complex Gastrointestinal Signals In Animal Model
(unknown author) via Obesity / Weight Loss / Fitnes on Tue, 25 Nov. 2008
Lining the upper portion of the small intestine with an impermeable sleeve led to both weight loss and restoration of normal glucose metabolism in an animal model of obesity-induced diabetes. readmore
View Item

How to: Disable commenting on posts older than 30 days
jbj via WpRecipes.com on Tue, 25 Nov. 2008
To enable auto comment closing, simply paste the following function on the functions.php file from your theme. If that file doesn’t exists, create it. <?php function close_comments( $posts ) { if ( !is_single() ) { return $posts; } if ( time() - strtotime( $posts[0]->post_date_gmt ) > ( 30 * 24 * 60 * 60 ) ) { $posts[0]->comment_status = 'closed'; readmore
View Item

Ten Tiny Apps That I'm Thankful For
GuyKawasaki via How to Change the World on Mon, 24 Nov. 2008
This is Thanksgiving, so I’d like to show some gratitude for ten tiny apps that I use almost every day. If you’re a writer, blogger, speaker, or entrepreneur who uses a Macintosh, please give them a look because they will make you more productive. readmore
View Item

How to: List WordPress category feeds
jbj via WpRecipes.com on Mon, 24 Nov. 2008
To achieve this recipe, simply paste the following code anywhere on your theme. It will output a list of your categories with a link to the category rss feed. <?php wp_list_categories('feed_image=http://www.myblog.com/image.gif&feed=XML Feed&optioncount=1&children=0'); ?> The two parameters used here are: feed_image: The url of the imag readmore
View Item

How to: Provide a rss feed per category to your readers
jbj via WpRecipes.com on Sat, 22 Nov. 2008
This recipe is probably one of the easiest to achieve I have ever published, but it is very useful. Let’s say you’d like to be able to only suscribe to Cats Who Code blogging tips. The category url is: http://www.catswhocode.com/blog/category/blogging To get a rss feed, you simply have to add /feed at the end readmore
View Item

Daniel Lindsley: Customizing The Admin: Part 2
(unknown author) via The Django community aggregato on Fri, 21 Nov. 2008
On of the pony requests that can up prominently at DjangoCon 2008 was the request for multiple deletes in the changelist of the admin. Thanks to newforms-admin, we can roll our own. Rather than go through step by step, I'm going to simply present everything needed to get a basic version going. Let's get started. readmore

View Item

Canon 50D Review by Bob Atkins
Eric via Photography Bay on Fri, 21 Nov. 2008
Bob Atkins has published a review of the readmore

View Item

1234567>>>

Hot Topics

 

Featured Burners
Philou | linkblog | 2549 shares

Clash | linkblog | 10501 shares

Tomo | linkblog | 5118 shares

Michael | linkblog | 2724 shares

Piersj | linkblog | 1897 shares