CategoryWeb Development

How to manage remote wordpress website using Git

H

Hello, In this post we are going to learn how we can manage a remote wordpress website/blog. To manage any remote website, we have two tasks at hand Manage Files Manage Databases It would be a lengthy post to explain about both files and database in a single post, so we will discuss about managing files in this post and in other post we will discuss about managing databases As the post name...

How to Add Google Map Driving Directions in your Website ?

H

You might have come across a situation where you needed to insert business address in your company’s about page and felt that embedding a Google Maps driving directions would make it look better but you don’t know how you can do this. Always, there is a naive way of taking a screenshot and inserting in the web page but because you are reading this post on a tech blog, I assume that...

Create your own wordpress theme from Scratch – WordPress Development Tutorials

C

If you are thinking of creating your own wordpress theme, you are at the right place. Creating a wordpress theme for the first time may be little confusing but once you get hold of the way wordpress themes are developed, you will feel lot better. The first and foremost thing that you need to understand before we start developing a wordpress theme is WordPress Theme Structure which we have already...

WordPress Development Tutorials – Theme Structure Theory

W

WordPress needs no introduction to any one in the web community.It is a content management system, running on every 60 out of 100 websites that you see on the Internet and I am one among the proud users of WordPress since past 5 years.In a series of posts on Technophileshub, I would like to put pen to paper on everything that I have learned during my course of journey with WordPress.In this post...

How to Modify or Remove Genesis Footer Credit Links ?

H

In general, it is a good practice to remove the back links from your blog provides to any third party website/blog for various reasons and Search Engine Optimization (SEO) is one of the important reasons among them. I have received quite a few automated emails recently from third party theme developers to delete the back links in footer credits of their respective themes because of Penguin Update...

How to Create a ZIP File using PHP ?

H

Creating a ZIP File using PHP is very simple using the built-in Class “ZipArchive“. All one has to do is create an instance of this class and use the methods of this class to create the zip file. Lets take a look how we can create a zip file.     The snippet for creating a zip file is <?php if (isset($_FILES['upload']) === true ){ $files =...

Set First Image as Featured Image for all wordpress posts

S

WordPress recently from its version 3.0 have started a new feature called Featured Image where we need to set Featured Image for every individual post manually before we are going to publish the post. Although it is a great feature many of our previous posts doesn’t have featured image and day by day many new themes have started using this feature because of which we may miss some design aspects...

PageSpeed: How to Minify Javascript and CSS

P

Minify Definition : Minifying / Minification is the process of compressing a file without changing any of the functionalities by removing unwanted spaces, new lines, comments from its content there by reducing the file size and improving page load time. This process will make the content in the file unreadable but every functionality of the code will remain unchanged. Minification and Search...

How to create layout and design for a website [theory]

H

Creating Layout and Design for a website Proper Layout and Design are two important things that we need to take care before creating any website or blog because some aspects should be addressed and kept in mind before we start any actual work , among those design and layout are two important ones. Layout is blue print of our website, It represents the overview of content and their co ordinate...

How to create a php file to show list of files in directory ?

H

I have come across a situation where I need to place some softwares in a particular folder in my host but at the same time I want to provide my visitors to see what all available softwares are available in that particular folder. By default Apache provides list of files in a directory but in some cases it do not. It is easier to write the simple piece of php code to display list of files in a...