Viewing 151 to 160 of 227 items
Archive | WordPress RSS feed for this section

How to use the Fav Me plugin

Using the Plugin We leave the no-brainer part to learn something interesting now: how to implement the plugin in your theme. Basically all you need are 2 functions: mfp_the_link(); mfp_display(); mfp_the_link will display an “Add this post to your favorite post list” link wherever you call it. Best practice of course is to add the function  Full Article…

0

20 Helpful WordPress SQL Queries Snippets

WordPress keeps every single scrap of information that is fed into it in a MySQL database, whether that be posts, pages, comments, blogroll, the plugin settings… everything. Yes, the WordPress admin backend is fantastic and it does allow you to control and edit all aspects of this information with ease. Up to a certain point  Full Article…

0

13 SQL Queries for WordPress

For example, if you needed to change some information across the board in WordPress, going through each record is very time consuming and prone to human error. By simply executing a SQL query against your WordPress database, you can make the necessary changes quickly and efficiently. Shown below are some SQL queries that can be  Full Article…

0

Dynamic user defined background images

This technique allows your WordPress content editors to specify their own custom background image for each page individually using custom fields (or meta boxes). Insert the following code into the head of your page: You will need to suppliment this with additional css which won’t need to change and can therefore be included in the  Full Article…

0

How to Enqueue Styles

This article will show you how to safely insert your CSS for your WordPress plugin or theme into the HEAD section of both the WordPress front-end and administration panel. I wrote an article a while back which explained how to safely enqueue JavaScript files into WordPress for your WordPress plugin or theme without simply injecting code into  Full Article…

0

Add jQuery to WordPress

By default WordPress comes packaged with a jQuery function but because the jQuery libraries are updated constantly I decided to call my own jQuery libraries from a CDN. CDN stands for content delivery network, large enterprises have their own CDN’s where they host copies of popular script. In the following example I’m using the CDN  Full Article…

0