This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- add this code in page.php to display Next page and Previous page link below pages in WordPress | |
this will display next and previous page link not next previous post link | |
http://codex.wordpress.org/Next_and_Previous_Links#The_Next_and_Previous_Pages --> | |
<?php | |
$pagelist = get_pages('sort_column=menu_order&sort_order=asc'); | |
$pages = array(); | |
foreach ($pagelist as $page) { | |
$pages[] += $page->ID; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add this to your wordpress themes functions.php to register widget with bootstrap's jumbotron styling | |
register_sidebar( array( | |
'name' => __( 'Featured below navigation', 'twentytwelve' ), | |
'id' => 'sidebar-featured', | |
'before_widget' => '<div class="jumbotron"><aside id="%1$s" class="container %2$s">', | |
'after_widget' => '</aside></div>', | |
'before_title' => '<h1>', |
NewerOlder