QNimate

  • CoursesVideos
  • WP PremiumPlugins
  • DemosLab
  • Home
  • QIdea
  • QTrack
WordPress Multisite Database Table Structures

Its a awesome article published by Lain on Deliciousbrains showing the structure and design of all WordPress tables in a WordPress multisite network. He also explains how they are connected using foreign key.

Link7 years ago http://qnimate.com/wordpress-multisite-database-table-structures/
WordPress MySQL Database Table Structures

Its a awesome article published by Lain on Deliciousbrains showing the structure and design of all WordPress tables. He also explains how they are connected using foreign key.

Link7 years ago http://qnimate.com/wordpress-mysql-database-table-structures/
How to Store Arrays in HTML5 localStorage

HTML5 localStorage lets you store key/value pairs of data. Both key and value needs to be a string. To store arrays as a key or value you need to encode the array into a JSON string. And while retrieving you need to decode it back to an array. Here is example code var array = […]

7 years ago http://qnimate.com/how-to-store-arrays-in-html5-localstorage/
How to Store Objects in HTML5 localStorage

HTML5 localStorage lets you store key/value pairs of data. Both key and value needs to be a string. To store objects as a key or value you need to encode the object into a JSON string. And while retrieving you need to decode it back to an object. Here is example code var object = […]

7 years ago http://qnimate.com/how-to-store-objects-in-html5-localstorage/
Get HTML5 Audio Duration Length

HTML5 Audio Element provides an duration property to retrieve the length of the video file. Here is example code on how to use the property

7 years ago http://qnimate.com/get-html5-audio-duration-length/
WordPress Check if Gravatar Exists

Here is a function which takes an email address and checks if an gravatar exists or not. function validate_gravatar($email) {     // Craft a potential url and test its headers     $hash = md5(strtolower(trim($email)));     $uri = ‘http://www.gravatar.com/avatar/’ . $hash . ‘?d=404′;     $headers = @get_headers($uri);     if (!preg_match("|200|", $headers[0])) […]

7 years ago http://qnimate.com/wordpress-check-if-gravatar-exists/
Change WordPress Default Avatar

WordPress themes while displaying author bio and comments use the get_avatar function to retrieve the avatar. get_avatar function requests avatar from Gravatar. If gravatar returns a image then get_avatar functions returns that image otherwise returns the default image. WordPress by default provides some default images, you need to select any one. You can also add […]

7 years ago http://qnimate.com/change-wordpress-default-avatar/
Create a Chat App using Intel XDK and XMPP

This post is a part 49 of Intel XDK Complete Tutorial post series. Chat apps are becoming very popular among users. Learning the overall architecture of a chat app is important for developers. In this tutorial I will show you how to create a chat app using Intel XDK. All the codes and technologies of […]

Image7 years ago http://qnimate.com/create-a-chat-app-using-intel-xdk-and-xmpp/
Get WordPress Post Date as Current Time Difference

In this tutorial I will show you how to get WordPress post published date as time difference i.e., 2 days ago, 5 months ago etc. Here is the code to get in this format <?php $time = get_post_time("U", true, $post_id); $time = human_time_diff($time, current_time(‘timestamp’)) . " ago"; echo $time;

7 years ago http://qnimate.com/get-wordpress-post-date-as-current-time-difference/
Page 7 of 43« First«...56789...203040...»Last »
Categories
  • Algorithms (1)
  • API (5)
  • Cloud (1)
  • Cordova (68)
  • Databases (8)
  • Ethereum (3)
  • Hyperledger Fabric (1)
  • Marketing (3)
  • Node.js (3)
  • Operating System (2)
  • Other (1)
  • SEO (15)
  • Tips and Tricks (13)
  • Web Development (184)
  • Web Security (12)
  • WordPress (94)
Most Viewed
  • slider
    Image Slider Using HTML And CSS Only
    60 comments
    8 years ago

  • facebook-chat-popup
    Facebook Style Chat Box Popup using JavaScript and CSS
    73 comments
    8 years ago

  • html5-file-api
    An Introduction To JavaScript Blobs and File Interface
    13 comments
    8 years ago
Most Commented
push-notificaton
Push Notification in Intel XDK using Push Plugin
7 years ago
109 Comments
facebook-chat-popup
Facebook Style Chat Box Popup using JavaScript and CSS
7 years ago
73 Comments
What is Multiplexing in HTTP/2?
7 years ago
61 Comments
Currently Viewed
How to take Date Input in HTML
7 years ago
Add Buttons to WordPress Text Editor
7 years ago
redirect-and-duplicate-seo
Redirection And Duplicate Content In Websites
8 years ago
Our Sponsor
My Books

2014 - 2015 © QNimate
All tutorials MIT license