TD Creative

Intuitive and effective web development.

Archive for the ‘Website Management’ Category

Thursday
Feb 7,2008

Creating a powerful, interactive, usefull website can be difficult. However, the open source combination that has been proven to be a success is that of phpBB + Wordpress. What are they? Well… a short description is below…oh - both software packages are free too…and for those “techies” out there, they run using a mySQL database and PHP scripting.

(more…)

Monday
Dec 3,2007

A very quick tip and the best blogging tip you will ever read for a succesfull blog.

Write:

  1. Unique
  2. Relavent
  3. Interesting

Content.

And to top it off update your blog at least 3 times a week.

Monday
Oct 29,2007

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“.

Tuesday
Oct 16,2007

The following fonts are what has found to be rated the top 5 fonts which support ‘accents’ and ‘euro’ according to dafont.. You should find, information, support and download links in the list below.

Scriptina

(more…)

Tuesday
Oct 2,2007

To begin - remember this short and key rule:

The title of your post grabs the attention of your users.

If you can grab the attention of your audience, then you will find that one, if not both of the below factors will happen:

  1. Traffic will increase with new visitors.
  2. You will get loyal readers to your blog.

(more…)