If you want to edit submission fields on Listify WordPress theme (these are the fields that appear on Submit Listing page), all you
Continue readingFunctions.php as a plugin
An idea and full explanation (by Justin Tadlock).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?php /** * Plugin Name: My Custom Functions * Plugin URI: http://yoursite.com * Description: This is an awesome custom plugin with functionality that I'd like to keep when switching things. * Author: Your Name * Author URI: http://yoursite.com * Version: 0.1.0 */ /* Place custom code below this line. */ /* Place custom code above this line. */ ?> |
Continue reading
How to change the number of documents (items) in WPML Translation management
If you’re translating your website into another language (or languages) using WPML and have lots of of pages, posts, products,
Continue readingHow to (quickly) debug WordPress white screen
In my experience, there are two kinds of people – people who experienced WordPress white screen and people who will
Continue readingReloading the website on resolution change
The code I posted on this link works fine, but has one limitation – if the site visitor changes the resolution
Continue readingChanging order of HTML elements using jQuery
If you want to change the order of HTML elements displayed on the page, there are at least two options
Continue readingHow to add jQuery (or JS…) script on specific WordPress page
Let’s say that you want to execute some jQuery script on a specific WordPress page – I had this case where
Continue readingGlowing HTML button with jQuery
There are certainly better ways to create a glowing button, but here is one simple way I used on one
Continue readingwp_pagenavi working with WP_Query
If you’re creating a custom template (let’s say for categories), then it is likely that you will have to use WP_Query class.
Continue readingCropped featured image in WordPress
It may be a featured image on the front end, but is post_thumbnail when it comes to back end and actually implementing it into the site. First you need to add featured image support to your website (make sure to add it to after_setup_theme hook) – needless to say you would add it to functions.php.
Continue reading