Search the Wiki

Viewing 261 to 270 of 337 items

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

Internet Explorer specific CSS

As much as we don’t like to deal with the IE bugs, we still have to face it because your boss and visitors are still using Explorer. It gets frustrating when different versions of Explorer displays web pages differently due to the inconsistent rendering engine. We typically use IE conditional comments to fix the IE  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

Fix the Vanilla Forum PDO issue on Localhost

Taken from the Vanilla forum. A question that usually would appear would be about an error relating to PDO shows up when you visit your freshly uploaded Vanilla 2.0.15 folder. It’s obviously not a bug but I don’t know where else to post this, but I originally had the question of “why am I getting  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

Get various taxonomy queries and information

Unfortunately (in my eyes)I haven’t found a way inside a post or page to query what taxonomies have beenused to apply terms. This for me would be a bit of a holy grail. Anyeway – these are the bits and pieces I have developed when trying to get various bits and pieces of information from  Full Article…

0

Query only posts with thumbnails

The issue with the coide for displaying only posts with thumbnails in the past has been that you query the posts type and then put a ‘if has post thumbnail’ conditional in the loop. This means that if you wanted 12 posts and that how many you get in the query, maybe only 6 have  Full Article…

0