Notable Tech Posts – 2010.06.13

June 13th, 2010  |  Published in technology

10 PHP code snippets for working with strings

HTML5 table template

10 must have free tools for developers

http://www.microsoft.com/downloads/details.aspx?familyid=e59c3964-672d-4511-bb3e-2d5e1db91038&displaylang=en - Internet Explorer Developer Toolbar (apparently this has been around for years!)

http://www.w3schools.com/html5

50 new useful CSS techniques tools and tutorials

WTF is HTML5 and Why We Should All Care

Increase your user activity with points badges and status

WordPress hack display post thumbnail in your RSS feed

Tags: , , , , , , , ,


Warning: Invalid argument supplied for foreach() in /homepages/3/d238924033/htdocs/lewayotte.com/wp-content/plugins/yet-another-related-posts-plugin/magic.php on line 54

Notable Tech Posts – 2010.06.06

June 6th, 2010  |  Published in technology

Create a REST API with PHP

Making RESTful requests in PHP

10 illustrations on search engines valuation of links

Apache performance tuning

Performance tuning a CentOS web server

8 useful code snippets to get started with WordPress 3.0

Cloak/Uncloak SCM Directories in DreamWeaver – i.e .SVN directories, SubWeaver plugin does this also

10 sites developers should have in their bookmarks

Using the WordPress uploader in your plugin or theme

Clone your live WordPress blog to a local server

CSS button redux

Tags: , , , , , , , , , , , , ,


Warning: Invalid argument supplied for foreach() in /homepages/3/d238924033/htdocs/lewayotte.com/wp-content/plugins/yet-another-related-posts-plugin/magic.php on line 54

Notable Tech Posts – 2010.05.02

May 2nd, 2010  |  Published in technology

Top WordPress hacks of early 2010

10 best practices for WordPress theme

15 design development screencasts

Touch the future create an elegant website with HTML5 and CSS3

How to handle negative criticism

Splatter social media icons

All there is to know about HTML5 and CSS3

21 awesome Javascript AJAX effects every web developer should know

Powerful SEO tips for WordPress users

9 useful PHP functions and features you need to know

Download install all your applications in one go

WordPress plugin development

http://www.smushit.com/ysmush.it/ – Neat program that removes meta information from images to reduce filesize

10 things you need to know about WordPress 3.0

Tags: , , , , , , , , , , ,


Warning: Invalid argument supplied for foreach() in /homepages/3/d238924033/htdocs/lewayotte.com/wp-content/plugins/yet-another-related-posts-plugin/magic.php on line 54

Embed an RSS/ATOM Feed into your WordPress Website

April 26th, 2010  |  Published in technology

One of my clients needs to pull an RSS feed from a real estate virtual tour provider and display it on one of their pages. I looked into a few plugins and could not find one that was easily customizable. After a quick google search I discovered that WordPress has some built-in functions based off of SimplePie‘s easy to use RSS API.

I also needed to customize the output a little bit, which required me to rely on PHP’s preg_match and preg_replace functions. Here is some simple example for embedding a feed into your WordPess website:

<?php
include_once(ABSPATH.WPINC.'/rss.php'); // path to include script
$feed = fetch_feed('http://url.to.feed/'); // specify feed url
?>

<?php
if (!is_wp_error($feed)) :
	$rss_items = $feed->get_items();
?>
    // Loop through each feed item and display each item as a hyperlink. <?php foreach ( $rss_items as $item ) : ?>
  • <?php echo $item->get_title(); ?>
  • <?php endforeach; ?>

Check out the codex for more information about WordPress’ function feed_fetch()… and with a little extra coding you can format the feed any way you like, see our example at NC Capital Homes.

Tags: , , , , ,


Warning: Invalid argument supplied for foreach() in /homepages/3/d238924033/htdocs/lewayotte.com/wp-content/plugins/yet-another-related-posts-plugin/magic.php on line 54

Notable Tech Posts – 2010.04.25

April 25th, 2010  |  Published in technology

10 awesome tutorials combining WordPress and jQuery

HTML5 video libraries toolkits and players

5 ways to debug WordPress

7 unsung and essential BuddyPress community management plugins

20 beautiful serif fonts for better designs

WordPress tip insert custom content after each post

4 easyways to share large files

How to create PHP website template

Vintage icon set for bloggers

Freelance 9 ways not to get hired

WordPress .htaccess

How to add a filter to the homepage h1

The Opera Mobile emulator

jQuery shadow motion effect

WordPress optimization on Dreamhost & Rackspace

How to turn your creative brainstorm into a completed project

What drives motivation in the modern workplace?

How to add new Facebook like button on WordPress

Tags: , , , , , , , , , , , , , , , , , ,


Warning: Invalid argument supplied for foreach() in /homepages/3/d238924033/htdocs/lewayotte.com/wp-content/plugins/yet-another-related-posts-plugin/magic.php on line 54