Archive for November 1, 2010

In this lesson, we’ll tackle what really matters. How do you get the content of your blog to show? Then, you’ll add some more invisible boxes or DIVs to separate the content from the post titles that we called for, yesterday.

(Note: Yesterday’s lesson is very, very important. If you didn’t fully understand what I showed yesterday, you need to re-read and ask me questions until it’s clear to you.)

On with today’s lesson, start Xampp Control, open the “tutorial” theme folder, open a new browser, point the browser to http://localhost/wordpress, and open the index.php file with Notepad.

Step 1:

Type <?php the_content(); ?> under the post title codes.

Save the notepad and refresh your browser, you should see some texts under your post titles.

(more…)

Many times we use many software to lock our PC’s folder.Sometimes they are trial.After finish trial period we face a great problem. To recover these problems follow the steps to lock any folder of your PC without any software….
Step-1:
Make a Folder in C drive rename it as “abc” without quotes.
Step-2:
Now type “cmd” in run menu.
Step-3:
Type “attrib +s +h C:\abc” without quotes and press enter.
Step-6:
This command will Make your folder invisble and it can not be seen even in hidden files and folders
Step-5:
To make it visible again type “attrib -s -h C:\abc”
Step-6:
You can lock any other folder also by changing the location C:\abc to address of your folder.

Auto Shutdown Pc With Timer

Posted: November 1, 2010 in WINDOWS TIPS
Tags:

********** METHOD # 1 **********
Step 1:

Right click on your desktop and choose “New=>shortcuts”.

Step 2:

In the box that says “Type the location of the shortcut”,
type in “shutdown -s -t 3600” without the quotation marks and click next.

Note: 3600 are the amount of seconds before your computer shuts down. So , 60secs*60mins=3600secs.

Step 3:

Make up a name for the shortcut and you’re done.
You can change the icon by right clicking=>properities=>change icon=>browse.

To abort

To make an abort key to stop the shutdown timer just create another shortcut and make
the “location of the shortcut” to ” shutdown -a” without the quotes.

(more…)

WP Theme Creation Lesson #5: The Loop

Posted: November 1, 2010 in Wordpress
Tags:

The Loop calls for your blog’s entries. It’s the most important set of PHP codes. By now, you should already know what to do before this lesson, of my tutorial series, begin. Go ahead and do that first, then let’s review what we’ve learned so far.
Let’s start with lesson #5:
By now, you should have opened Xampp Control, the “tutorial” theme’s folder, browser at http://localhost/wordpress, and the index.php file in notepad.

This is what you should have in the index.php file:

(more…)