Skip to content

Instantly share code, notes, and snippets.

@lkhedlund
lkhedlund / .htaccess
Created May 1, 2017 18:04 — forked from ScottPhillips/.htaccess
Common .htaccess Redirects
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/
@lkhedlund
lkhedlund / bootstrap-pagination.php
Last active September 5, 2017 21:30 — forked from ediamin/bootstrap-pagination.php
Bootstrap v4-alpha6 Pagination for WordPress
/*
* custom pagination with bootstrap .pagination class
* source: http://www.ordinarycoder.com/paginate_links-class-ul-li-bootstrap/
*/
function bootstrap_pagination( $echo = true ) {
global $wp_query;
$big = 999999999; // need an unlikely integer
$pages = paginate_links( array(