First you need to choose which post type you want to list and to choose a custom field to filter by you use the "meta_key" key in the array. The key starts with "wpcf-" and afterwards the name of the custom field you want to use. $posts = query_posts( array( 'post_type' => "event", 'posts_per_page' => … Continue reading Order Custom Post Type by custom Field with Types Plugin in WordPress
Custom list style with Font Awesome
I frequently use Font Awesome when making website to easily add icons to buttons or within the pages. You can also use Font awesome to make a custom list style. This is a useful website to search for Font awesome icons -> http://faicons.com/ and get the unicode to change the icon. You can change the type of … Continue reading Custom list style with Font Awesome
How to put inline javascript in the footer of your page with WordPress
You can do this by adding this code to your template file. This will add a hook. Your javascript code will now be placed in the footer of your page (or where the wp_footer() function is called). <?php function footer_script(){ ?> <script> jQuery(document).ready(function(){ //put your js code here }) </script> <?php } add_action('wp_footer', 'footer_script'); ?> … Continue reading How to put inline javascript in the footer of your page with WordPress
Scrollto element with an id selector using jQuery
For example, if I have a button with an id "btn" and a form with the id "form" and I want to scrollto the form when I click on the button HTML: <p><a href="" id="btn">go to form</a></p> <form id="form"> </form> jQuery: $(document).ready(function(){ $("#btn").click(function(e){ e.preventDefault(); $('html, body').animate({ scrollTop: $("#form").offset().top }, 1000); }) })
Vagrant up errors on install on Mac OS X
Instead of MAMP I use Vagrant to set up my virtualhosts locally. That way you can emulate your webserver's setup. To configure my Vagrant virtual machine I use PuPHPet. You need to have VirtualBox installed for this. After downloading the PuPHPet configuration manifest you need to start up the virtual box. You do this by executing … Continue reading Vagrant up errors on install on Mac OS X
Tabindex problems with Gravity forms in WordPress
Sometimes there are problems with the tabindex when you use the Gravity forms plugin in WordPress. You can fix this by adding this to your theme's functions.php file //############################################################################### // Fix Gravity Form Tabindex Conflicts //############################################################################### add_filter("gform_tabindex", "gform_tabindexer"); function gform_tabindexer() { $starting_index = 1000; // if you need a higher tabindex, update this number return … Continue reading Tabindex problems with Gravity forms in WordPress
Change the amount of tags in tagcloud in WordPress
Add this piece of code to your theme's function.php file. add_filter('widget_tag_cloud_args','set_number_tags'); function set_number_tags($args) { $args = array('number' => 20); return $args; } Set the number of the amount of tags you want to display on your page. Or you can just use the parameters for the wp_tag_cloud function. <?php $args = array( 'smallest' => 8, 'largest' … Continue reading Change the amount of tags in tagcloud in WordPress
Scroll to top of page from within Facebook app
When within a facebook app you sometimes want to scroll to the top of the page but outside of the iframe which contains your app. To do that you use the following code in javascript: FB.Canvas.scrollTo(0,0); This will only work when your canvas height is set to "Settable". By default 800px. You can make in … Continue reading Scroll to top of page from within Facebook app
How to make a custom protected page in WordPress
The default password form uses this message: "This post is password protected. To view it please enter your password below:". You can use a custom text to display on a protected page by using a filter in WordPress. Add this code to your theme's functions.php file: <?php function custom_password_form() { global $post; $label = 'protected-page-'.( … Continue reading How to make a custom protected page in WordPress
Disable remember open files in Sublime text 2
I recently did a find and replace over a whole project where every file had to be edited. There were about 2000 files that had to be edited. My Sublime text was crashing after a while. Problem was that, after I closed Sublime text and reopened it, the 2000 files reopened automatically, which meant my … Continue reading Disable remember open files in Sublime text 2