QNimate

  • CoursesVideos
  • WP PremiumPlugins
  • DemosLab
  • Home
  • QIdea
  • QTrack

WordPress 94

WordPress Default Comment Form CSS Classes

WordPress comes with some built-in comments system. While developing a WordPress theme you need to style the individual comments and comment form to display them appropriately. Here is the list of CSS classes to style the comments: /*Individual Comments*/ .commentlist .reply {} .commentlist .reply a {} .commentlist .alt {} .commentlist .odd {} .commentlist .even {} […]

7 years ago http://qnimate.com/wordpress-default-comment-form-css-classes/
WordPress Default Widgets CSS Classes

WordPress comes with some built in widgets such as recent comments, calendar, tags, categories etc. While developing a WordPress theme you need to style the default widgets too. Here is the list of CSS classes to style the built in widgets .widget {} #searchform {} .widget_search {} .screen-reader-text {} .widget_meta {} .widget_meta ul {} .widget_meta […]

7 years ago http://qnimate.com/wordpress-default-widgets-css-classes/
WordPress Visual Editor Generated Classes

The visual editor is the most used component of the WordPress. There are some classes added by WordPress to the visual editor elements to style them. As a theme developer its your responsibility to make sure you have added proper CSS attributes to these classes. Here is the list of classes WordPress automatically adds to […]

7 years ago http://qnimate.com/wordpress-visual-editor-generated-classes/
Create a Drag and Drop Page Builder for WordPress

Drag and Drop Page Builders make it easy to build responsive grid-based page content that adapts to mobile devices. It’s a whole new way of content creation that’ll help you create your home, contact, about us or any other page where a linear layout won’t convey your message. There are many advanced page builders such […]

7 years ago http://qnimate.com/create-a-drag-and-drop-page-builder-for-wordpress/
WordPress Set Visual Editor as Default

WordPress provides two editors for editing post content i.e., visual and HTML editor. To make any one of them default you need to use the wp_default_editor filter. Here is example code to make Visual editor as the default editor <?php add_filter("wp_default_editor", create_function(", "return "tinymce";"));

7 years ago http://qnimate.com/wordpress-set-visual-editor-as-default/
WordPress Set HTML Editor as Default

WordPress provides two editors for editing post content i.e., visual and HTML editor. To make any one of them default you need to use the wp_default_editor filter. Here is example code to make HTML editor as the default editor <?php add_filter("wp_default_editor", create_function(", "return "html";"));

7 years ago http://qnimate.com/wordpress-set-html-editor-as-default/
HTTP/2 for WordPress Sites

This post is a part 5 of HTTP/2 Complete Tutorial post series. HTTP/1.1 is a old protocol that is being used in modern websites which are very different from the websites of the time HTTP/1.1 was introduced. Therefore a new protocol was required to make the web faster so HTTP/2 was introduced. As WordPress is […]

7 years ago http://qnimate.com/http2-for-wordpress-sites/
File Upload using WordPress Settings API

The register_setting function saves the value attribute on form submission directly into the database. We can also alter or validate the value based on our choice. The register_setting function takes a third argument which is a callback, this callback is fired before it saves the settings into the database. For uploading files through settings pages […]

7 years ago http://qnimate.com/file-upload-using-wordpress-settings-api/
WordPress Settings API Validation and Sanitization

Validation and Sanitization are two terms are often confused and/or misused by beginning developers. So what is the difference between sanitization and validation? Well let’s start with validation, as it happens before sanitization. Simply put, validation is verifying that the data being submitted conforms to a rule or set of rules you (the developer) set […]

7 years ago http://qnimate.com/wordpress-settings-api-validation-and-sanitization/
Page 1 of 1112345...10...»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
    9 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
    9 years ago
Most Commented
push-notificaton
Push Notification in Intel XDK using Push Plugin
8 years ago
109 Comments
facebook-chat-popup
Facebook Style Chat Box Popup using JavaScript and CSS
8 years ago
73 Comments
What is Multiplexing in HTTP/2?
7 years ago
61 Comments
Currently Viewed
HTTP/2 Compatibility with old Browsers and Servers
7 years ago
WordPress Settings API Validation and Sanitization
7 years ago
triangle-circle-css
Creating Triangles And Circles Using CSS
8 years ago
Our Sponsor
My Books

2014 - 2015 © QNimate
All tutorials MIT license