Featured
-
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Best 5 Lightweight PHP Frameworks for REST APIs Development
Are you ready to develop the Rest AP
by ankur.kumar -
PHP: Full-Stack Framework vs Micro Framework
A web framework can be described as a software fra
by ankit.bhatia -
How to get facebook profile picture by Facebook App
If you would like to get your profile picture in f
by vivek.rastogi -
Creating RESTful API in cakephp
This tutorial will help you to learn how to create
by pushpendra.rawat
Tags
Modifying Comments section look and feel in wordpress?
WordPress provides comment feature. Website needs comment section for reviews which makes visitor engagement on web page.
You can change the look and feel of the comment section. In default WordPress themes we have comment.php which is responsib...
Modifying search results look and feel in WordPress?
Wordpress themes includes different files for different purpose like single.php for showing the single post. We make the changes in search.php to modify the look and feel of the search results. You can see this file in default wordpress themes an...
How to add a PHP page to WordPress?
If you want to create php pages in wordpress or in other way you want to create templates in WordPress then you need to simply create a file in your activated theme and write below code in top of the file.
After that you can create a wordpress...
Retrieve WordPress root directory path?
Wordpress provides different powerful functions which are useful for different prospective. We are going to discuss one function named get_home_path(). Through this function we can get the path of root directory in your wordpress setup. We can si...
How to Create photo gallery in wordpress
Wordpress.. WordPress is most powerful CMS for blogging. If you have experience in blogging then you should know that images and videos are most important in blogs.
With the help of image gallery or video, we can make the blog more interesting f...
make site Multilingual in wordpress
You want to build Multilingual website in wordpress but wordpress does not support that functionality. Don't worry...
Wordpress provides different plugins to convert your website in Multilingual. Basically you can make your website Multilingua...
How to Use AJAX in a WordPress Shortcode?
We are going to process ajax request in wordpress shortcode on button click. First of all you need to add the shortcode in wordpress. Kindly write below code in function.php
<?php
function callback_listing($atts, $content = null)
{
e...
OAuth 2.0 Authentication on Wordpress site
We are here to discuss OAuth 2.0 Authentication in wordpress. Do you know about OAuth?. What is OAuth?. OAuth is nothing but a open protocol which is useful to allow authorization by easy and secure methods from web/mobile/software applications.
...
Rename files during upload within Wordpress backend
If you want to rename the file name at the time of upload, it is a right place to know the solution. Let's discuss this requirement.
We all know there are many hooks available in Wordpress. We will use the filter named sanitize_file_name. You ...
Wordpress: How to call a plugin function with an ajax call
In web development field we face different situations in order to fulfil the requirements. Sometimes we have to customize the well managed CMS/frameworks. Today we are going to take an sample example of wordpress plugin development. There is one ...
How to show stars instead of theme ratings in Woocommerce
If you want to show stars instead of theme ratings in Woocommerce, you can do this by changing the Woocommerce star ratings.
The Stars rating is the default rating system in WooCommerce, so to match the rating system with themes we have to dis...
How To Change Total Count Of Items Displayed Per Page in WordPress
Hello readers!
In my previous blog I have explained you how you can change number of products displayed per row in WordPress.
So here I will guide you how you can change total count of items displayed per page in WordPress.
Lets take an exam...
Adding Authors Images to Your Blog in WordPress
Hello reader's!
Toady we discuss about "Adding Authors images to your blog".
WordPress is integrated with Gravatar, allows you to show every post author's avatar in their posts. It makes your business look more personal than being as a f...
Custom Post Type Templates in Wordpress
In WordPress theme you can set custom templates for custom post types ,A custom template used to display of single posts belonging to a custom post type .
suppose you have created a custom posts name books,
add_action( 'init', 'create_post...
Custom Post in Wordpress
In wordpress you can create custom posts , Suppose in your WP site you want to create a Movie list then you can use this custom post type ,
To create custom posts type you have to first invoke register_post_type() through init action,
Lets...
Common function used in WP theme
Some useful WP function for developing themes
have_posts();
This function check whether the current WordPress query has any results. This is a Boolean function, and returns either TRUE or FALSE.
syntax is :
if ( have_posts() ) :
...
Create a Wordpress Plugin
Hi there ,
Here I am showing with the example how you can develop your custom plugin in wordpress,To develop a Plugin in Wordpress, you should know some basics concepts of Wordpress files and folders.
So now I will create a plugin which wi...
How to download file using PHP script
We use this script to download a file from a given define file path location
In this script we are using two variable:
1:) $fileName // for file name with path.
2:)$title //for file name changed in you given title name.
<?...