remove_filter('the_content', 'wpautop');
Monthly Archives: February 2013
Python Exceptions
Minipong
JavasScript – call superclass init
dz.Hiim.Brain = dz.Model.extend({ initialize: function(options){ dz.Hiim.Brain.__super__.initialize.apply(this, arguments); return this; } });
Bookmarks 2013-02-08
https://github.com/amoffat/bootstrap-application-wizard
jQuery payment – plugin za izradu formulara u koji se unose informacije o kreditnoj kartici
9 Magic Methods in PHP
Run Ninja, Run
WordPress posts <-> pages SQL
Change WordPress Page to Post
UPDATE wp_posts SET post_type='post' WHERE post_type='page' AND id=X
Change WordPress Categories to Tags
UPDATE wp_term_taxonomy SET taxonomy='post_tag', parent=0 WHERE taxonomy='category'
No plugin pagination
global $wp_query; $total = $wp_query->max_num_pages; // only bother with the rest if we have more than 1 page! if ( $total > 1 ) { // get the current page if ( !$current_page = get_query_var('paged') ) $current_page = 1; // structure of "format" depends on whether we're using pretty permalinks $format = empty( get_option('permalink_structure') ) ? '&page=%#%' : 'page/%#%/'; echo paginate_links(array( 'base' => get_pagenum_link(1) . '%_%', 'format' => $format, 'current' => $current_page, 'total' => $total, 'mid_size' => 4, 'type' => 'list' )); }
Izvor: http://wordpressexperts.net/how-to-add-pagination-in-wordpress-without-plugins-its-easy/
Bookmarks 2013-02-05
Change Native WordPress Gallery Thumbnail Size
/* ----- GALLERY HACK ------- */ remove_shortcode('gallery'); add_shortcode('gallery', 'dz42_medium_gallery'); function dz42_medium_gallery($atts) { $atts['size'] = 'galerija-thumbnail'; return gallery_shortcode($atts); }
change wordpress default gallery thumbnail size
Bravo Tomo! :)