http://devtoolsecrets.com/ - Secrets of the Browser Developer Tools
http://devdocs.io/ - DevDocs combines multiple API documentations in a fast, organized, and searchable interface.
RewriteEngine on | |
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L] |
<?php | |
$paged = (get_query_var('page')) ? get_query_var('page') : 1; | |
$wp_query = new WP_Query(array('post_type' => 'producten','posts_per_page' => 20,'paged' => $paged)); | |
while ($wp_query->have_posts()) : $wp_query->the_post(); | |
// get the template for eacht product column | |
get_template_part( 'tpl', 'product' ); | |
endwhile; |
http://codex.wordpress.org/Plugin_API/Filter_Reference/manage_pages_columns | |
http://codex.wordpress.org/Plugin_API/Filter_Reference/manage_posts_columns | |
http://codex.wordpress.org/Plugin_API/Action_Reference/manage_posts_custom_column | |
http://devtoolsecrets.com/ - Secrets of the Browser Developer Tools
http://devdocs.io/ - DevDocs combines multiple API documentations in a fast, organized, and searchable interface.
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |