Welcome to TD Creative. This website is a web developer blog designed to cover intuitive and effective Web development.
The web dev navigation items on the right hand side give an overview of the areas of web development. This website covers web development for webmasters, web marketers and entrepreneurs.
If you are a web developer, then you will most likely be using Firefox because you have realised that standards, functionality etc… is better than that of other browsers. Even if you are not a web developer, Firefox is still the better browser anyway
. If you are a web developer, the plugins outlined in this post will make your web development experience millions of times better.
Perhaps the two sites at the moment driving the biggest amount of traffic to websites - disregarding the major search engines are Stumbleupon and Digg. To start off, lets introduce these two websites.
StumbleUpon - http://www.stumbleupon.com -
Channel surf the internet with the StumbleUpon toolbar to find great websites, videos, photos and more based on your interests. StumbleUpon learns what you like and makes better recommendations.
Digg - http://www.digg.com -
Digg is a place for people to discover and share content from anywhere on the web. From the biggest online destinations to the most obscure blog, Digg surfaces the best stuff as voted on by our users.
Ever wondered how to display recent wordpress posts anywhere on your site? The answer is simple. Simply using the following code snippet and adjust the HTML to something of your choice that matches your website. All you need to do is include the wordpress config file of your installation you wish to retrieve posts from and use this small snippet of code on your website.
<ul>
<?php
require_once(’wp-config.php’);
$myposts = get_posts(’numberposts=5&offset=0′);
foreach($myposts as $post)
{
?>
<li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li>
<?php
}
?>
</ul>
To change the number of recent wordpress posts that appear, change this part of the code to a number that suits you: “numberposts=5“.
Todays post is sponsored by: Web Inspiration.
Sometimes we are so interested in the content of a webpage, to people like me with a really bad memory is a good idea to print a webpage so I we can see it later. There are times when we can just copy and paste the information in Word and then print it, but even then there are a lot of unuseful things in the text (links, images, etc.). So I ask myself, why don’t we make a website that is easy to print? Well, here’s how.
Its a webmasters dream of receiving traffic exactly tuned to their website. Its no good having thousands of visitors intersted in football looking at your web development blog. Whats the point in that? What you ideally need is, believe it or not - is people interested in web development to be browsing a web development blog like this one. Putting this idea into a commercial perspective, if an ecommerce site is selling books about history, its not good attracting an audience interested in science fiction action DVD’s - the website simply wouldnt sell anything and would fail.