Tag Archives: Wordpress
Screen shot 2011-11-11 at 4.50.29 PM

How to Customize your Post in WordPress

11 Nov

Why would you want to do this? Maybe you want post of a certain category to be different, or highlight by author in the post or comments? This week I used a function called called post_class to make data sheets with a different logo to match each company. Each company is a different category so I wanted to target the category of the post to make my changes with css. [...]

Simple WordPress Login

20 Sep

Whether you want to make it easier for your client to remember, or you are tired of typing wp-login, it’s easy to have a simplified login. I found the following tips posted by Chris Coyer

1. To make your login URL just http://yoursite.com/login just add this line in your .htaccess file before the default WordPress rewrite stuff:

RewriteRule ^login$ http://yoursite.com/wp-login.php [NC,L]

2.If you do not have an .htaccess fileĀ  open your text editor and past all of the following code and save in your root folder.

RewriteEngine On

RewriteRule ^login$ http://focus.ergon.com/wp-login.php [NC,L]

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
# old code — RewriteBase /dev/
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# old code — RewriteRule . /dev/index.php [L]
RewriteRule . /index.php [L]
</IfModule>

<files wp-config.php>
order deny,allow
deny from all
</files>

# END WordPress

related post tutorial

How to Make a Related Post with Thumbnails in WordPress

9 Aug

Related entry links are common at the end of a blog entry. This is how to customize it to your blog without using a plug-in.

[...]

Screen shot 2011-07-20 at 12.31.38 PM

How to Have a Better WordPress CMS: The Login

20 Jul

The better I can make my site’s CMS the happier my client is. I am starting things off with the login. This is especially important, since the photographer will have clients logging in to view their photos.

[...]

Screen shot 2011-07-18 at 12.44.18 PM

How to Change the WordPress Search Bar

18 Jul

 

Little details like changing the search bar go a long way in design. It’s easy to do! Learn how to change the default WordPress search bar.

 

[...]

Screen shot 2011-06-17 at 11.36.16 AM

How to Make a Navigation with Images with WordPress 3.0 Menus

22 Jun

Learn how to make a navigation with images like this one with WordPress 3.0 menus in four easy steps! [...]