Posts Tagged php

HTML & CSS Blog Layout – Theme Implementation for WordPress

 HTML & CSS Blog Layout – Theme Implementation for WordPress

Advertise here with BSA

In this tutorial, I’ll teach you how to adapt a simple HTML blog layout into a WordPress the Read the rest of this entry »

Tags: , , , , ,

How to Make a Floating Share Box

0145b floating share How to Make a Floating Share Box

This is one of the most common questions I get asked; how do you make a floating box with share links

Read the rest of this entry »

Tags: , , , , ,

10 Techniques for Customizing the WordPress Admin Panel

0085 01 customize adminarea wordpress thumbnail 10 Techniques for Customizing the WordPress Admin Panel Read the rest of this entry »

Tags: , , , , ,

10 Things You Can Do to Become a Better PHP Developer

0004 01 things php developer thumbnail 10 Things You Can Do to Become a Better PHP Developer Read the rest of this entry »

Tags: , , , , ,

How to Create Image Galleries in Your Theme

9e5ee gallery1 How to Create Image Galleries in Your Theme

WordPress makes it straightforward to create a gallery from the images attached to a post

Read the rest of this entry »

Tags: , , , , ,

Install WordPress on Your Computer Using WampServer

03 01 wampserver wordpress ld img Install WordPress on Your Computer Using WampServer Read the rest of this entry »

Tags: , , , , ,

10 Basic Tips for Improving WordPress Themes

11 01 improving wordpress themes ld img 10 Basic Tips for Improving WordPress Themes Read the rest of this entry »

Tags: , , , , ,

Weekly Design News – Resources, Tutorials and Freebies (N.59)

Tags: , , , , ,

Giveaway: Win PHP Link Directory Licenses

22 01 phplink directory ld img Giveaway: Win PHP Link Directory Licenses Read the rest of this entry »

Tags: , , , , ,

Creating Helpful and Effective WordPress Archives

b89ae header Creating Helpful and Effective Wordpress Archives

One of the most important elements of your blog, is the content that you painstakingly put together to gain readers and keep the online masses surfing your waves. So why do so many bloggers not take the extra time and give more attention to their archives

Read the rest of this entry »

Tags: , ,

Automatic WordPress Thumbnails w/ No Custom Fields

95e26 thumbnail preview Automatic Wordpress Thumbnails w/ No Custom Fields

Let’s say you want to show thumbnails in your blog’s front page. A lot of blogs do that now and it’s a good way of making the page look more alive.

The only problem though is that using custom fields can be complicated and time-wasting. This post will show you how to make your theme generate thumbnails automatically, based on your post’s first image.

This trick is done by mixing some wordpress hacks and a php script. The PHP script is Darren Hoyt’s timthumb.php
Read the rest of this entry »

Tags: , , , ,

Getting Started with PHP Regular Expressions

1. What are Regular Expressions

The main purpose of regular expressions, also called regex or regexp, is to efficiently search for patterns in a given text. These search patterns are written using a special format which a regular expression parser understands.

ee45f express 1 Getting Started with PHP Regular Expressions

Regular expressions are originating from Unix systems, where a program was designed, called grep, to help users work with strings and manipulate text. By following a few basic rules, one can create very complex search patterns.

As an example, let’s say you’re given the task to check wether an e-mail or a telephone number has the correct form. Using a few simple commands these problems can easily be solved thanks to regular expressions. The syntax doesn’t always seems straightforward at first, but once you learn it, you’ll realize that you can do pretty complex searches easily, just by typing in a few characters and you’ll approach problems from a different perspective.

Read the rest of this entry »

Tags: , , ,