In this tutorial, i will show you how to get the post thumbnail URL in WordPress.Generally we use the_post_thumbnail(); function to display post thumbnail. But…
1 CommentTutorials / Programming tips Posts
In this post i will show you how to remove the version parameter from scripts and stylesheets enqueued by WordPress’s wp_enqueue_script() and wp_enqueue_style() functions. you…
Leave a CommentI am gonna use CodeIgniter’s active record class to generate Join Queries in this tutorial. Because by using AR class we can write complex joins…
18 CommentsIn this post, I will show you how to insert multiple rows in CodeIgniter by using CI’s active records library. CI active record has a…
6 CommentsIn this tutorial, i would like to show you how to redirect in PHP.We use header() function in PHP to redirect to new location.The header…
Leave a CommentYou can easily watermark images in CodeIgniter by using CI’s image manipulation class. In CI Watermarking is only available using the GD/GD2 library. CI’s image…
21 CommentsComposer: Composer is an application-level dependency manager for the PHP programming language that provides a standard format for managing dependencies of PHP software and required…
8 CommentsIn order to remove, delete or unlink files in Unix/Linux operating system we need to use the rm command. Syntax : rm [OPTION]… file or…
1 Commentif you want to change your domain name without affecting SEO Ranking in search engines then you should think about the 301-page redirect, with a…
1 CommentIn this post i will show you how to read CSV file with PHP. CSV is a type of file. It means Comma Separated Values.…
Leave a CommentTo check if an object is empty in JQuery we use jQuery.isEmptyObject( object ) with will return true on success , false on failure. Ex…
1 CommentToday I would like to write about Authenticating to XTRF using Rest API with PHP. After authenticating we can manage users, projects, and estimate ..etc.…
Leave a CommentPHPExcel is a pure PHP library for reading and writing spreadsheet files and CodeIgniter is one of the well-known PHP MVC Frameworks. In this tutorial,…
86 CommentsBelow is a tiny function that will take any 10 digit number and convert it into the following phone format: 970-313-2428. function phone_number_format($number) { //…
7 CommentsHey, today I will show you integrating mPDF into CodeIgniter Application. mPDF is a PHP Class, by using this we can easily generate PDF files…
132 Comments