| @@ -7,7 +7,7 @@ discard block | ||
| 7 | 7 | * @package Lighthouse | 
| 8 | 8 | */ | 
| 9 | 9 | |
| 10 | -if ( ! function_exists( 'lighthouse_setup' ) ) : | |
| 10 | +if ( ! function_exists('lighthouse_setup')) : | |
| 11 | 11 | /** | 
| 12 | 12 | * Sets up theme defaults and registers support for various WordPress features. | 
| 13 | 13 | * | 
| @@ -22,10 +22,10 @@ discard block | ||
| 22 | 22 | * If you're building a theme based on Lighthouse, use a find and replace | 
| 23 | 23 | * to change 'lighthouse' to the name of your theme in all the template files. | 
| 24 | 24 | */ | 
| 25 | - load_theme_textdomain( 'lighthouse', get_template_directory() . '/languages' ); | |
| 25 | +	load_theme_textdomain('lighthouse', get_template_directory().'/languages'); | |
| 26 | 26 | |
| 27 | 27 | // Add default posts and comments RSS feed links to head. | 
| 28 | - add_theme_support( 'automatic-feed-links' ); | |
| 28 | +	add_theme_support('automatic-feed-links'); | |
| 29 | 29 | |
| 30 | 30 | /* | 
| 31 | 31 | * Let WordPress manage the document title. | 
| @@ -33,32 +33,32 @@ discard block | ||
| 33 | 33 | * hard-coded <title> tag in the document head, and expect WordPress to | 
| 34 | 34 | * provide it for us. | 
| 35 | 35 | */ | 
| 36 | - add_theme_support( 'title-tag' ); | |
| 36 | +	add_theme_support('title-tag'); | |
| 37 | 37 | |
| 38 | 38 | /* | 
| 39 | 39 | * Enable support for Post Thumbnails on posts and pages. | 
| 40 | 40 | * | 
| 41 | 41 | * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ | 
| 42 | 42 | */ | 
| 43 | - add_theme_support( 'post-thumbnails' ); | |
| 43 | +	add_theme_support('post-thumbnails'); | |
| 44 | 44 | |
| 45 | - add_image_size( 'lighthouse_feature_img', 1000, 310, array( 'center', 'center' ) ); | |
| 45 | +	add_image_size('lighthouse_feature_img', 1000, 310, array('center', 'center')); | |
| 46 | 46 | |
| 47 | - add_image_size( 'lighthouse_blog_listing', 714, 274, array( 'center', 'center' ) ); | |
| 47 | +	add_image_size('lighthouse_blog_listing', 714, 274, array('center', 'center')); | |
| 48 | 48 | |
| 49 | - add_image_size( 'lighthouse_related_post', 475, 280, array( 'center', 'center' ) ); | |
| 49 | +	add_image_size('lighthouse_related_post', 475, 280, array('center', 'center')); | |
| 50 | 50 | |
| 51 | 51 | /* | 
| 52 | 52 | * Default HTML5 Form | 
| 53 | 53 | * | 
| 54 | 54 | * @link https://codex.wordpress.org/Function_Reference/get_search_form | 
| 55 | 55 | */ | 
| 56 | - add_theme_support( 'html5', array( 'search-form' ) ); | |
| 56 | +	add_theme_support('html5', array('search-form'));  | |
| 57 | 57 | |
| 58 | 58 | // This theme uses wp_nav_menu() in one location. | 
| 59 | - register_nav_menus( array( | |
| 60 | - 'primary' => esc_html__( 'Primary', 'lighthouse' ), | |
| 61 | - ) ); | |
| 59 | + register_nav_menus(array( | |
| 60 | +		'primary' => esc_html__('Primary', 'lighthouse'), | |
| 61 | + )); | |
| 62 | 62 | |
| 63 | 63 | |
| 64 | 64 | /* | 
| @@ -68,47 +68,47 @@ discard block | ||
| 68 | 68 |  	function lighthouse_menus() { | 
| 69 | 69 | register_nav_menus( | 
| 70 | 70 | array( | 
| 71 | - 'header-menu-left' => __( 'Header menu left', 'nav menu location', 'lighthouse' ), | |
| 72 | - 'header-menu-right' => __( 'Header menu right' , 'nav menu location', 'lighthouse'), | |
| 73 | - 'footer-menu' => __( 'Footer menu' , 'nav menu location', 'lighthouse'), | |
| 74 | - 'footer-menu-bottom' => __( 'Footer menu bottom' , 'nav menu location', 'lighthouse') | |
| 71 | +				'header-menu-left' => __('Header menu left', 'nav menu location', 'lighthouse'), | |
| 72 | +				'header-menu-right' => __('Header menu right', 'nav menu location', 'lighthouse'), | |
| 73 | +				'footer-menu' => __('Footer menu', 'nav menu location', 'lighthouse'), | |
| 74 | +				'footer-menu-bottom' => __('Footer menu bottom', 'nav menu location', 'lighthouse') | |
| 75 | 75 | ) | 
| 76 | 76 | ); | 
| 77 | 77 | } | 
| 78 | - add_action( 'init', 'lighthouse_menus' ); | |
| 78 | +	add_action('init', 'lighthouse_menus'); | |
| 79 | 79 | |
| 80 | 80 | /* | 
| 81 | 81 | * Switch default core markup for search form, comment form, and comments | 
| 82 | 82 | * to output valid HTML5. | 
| 83 | 83 | */ | 
| 84 | - add_theme_support( 'html5', array( | |
| 84 | +	add_theme_support('html5', array( | |
| 85 | 85 | 'search-form', | 
| 86 | 86 | 'comment-form', | 
| 87 | 87 | 'comment-list', | 
| 88 | 88 | 'gallery', | 
| 89 | 89 | 'caption', | 
| 90 | - ) ); | |
| 90 | + )); | |
| 91 | 91 | |
| 92 | 92 | /* | 
| 93 | 93 | * Enable support for Post Formats. | 
| 94 | 94 | * See https://developer.wordpress.org/themes/functionality/post-formats/ | 
| 95 | 95 | */ | 
| 96 | - add_theme_support( 'post-formats', array( | |
| 96 | +	add_theme_support('post-formats', array( | |
| 97 | 97 | 'aside', | 
| 98 | 98 | 'image', | 
| 99 | 99 | 'video', | 
| 100 | 100 | 'quote', | 
| 101 | 101 | 'link', | 
| 102 | - ) ); | |
| 102 | + )); | |
| 103 | 103 | |
| 104 | 104 | // Set up the WordPress core custom background feature. | 
| 105 | - add_theme_support( 'custom-background', apply_filters( 'lighthouse_custom_background_args', array( | |
| 105 | +	add_theme_support('custom-background', apply_filters('lighthouse_custom_background_args', array( | |
| 106 | 106 | 'default-color' => 'ffffff', | 
| 107 | 107 | 'default-image' => '', | 
| 108 | - ) ) ); | |
| 108 | + ))); | |
| 109 | 109 | } | 
| 110 | 110 | endif; | 
| 111 | -add_action( 'after_setup_theme', 'lighthouse_setup' ); | |
| 111 | +add_action('after_setup_theme', 'lighthouse_setup'); | |
| 112 | 112 | |
| 113 | 113 | /** | 
| 114 | 114 | * Set the content width in pixels, based on the theme's design and stylesheet. | 
| @@ -118,9 +118,9 @@ discard block | ||
| 118 | 118 | * @global int $content_width | 
| 119 | 119 | */ | 
| 120 | 120 |  function lighthouse_content_width() { | 
| 121 | - $GLOBALS['content_width'] = apply_filters( 'lighthouse_content_width', 640 ); | |
| 121 | +	$GLOBALS['content_width'] = apply_filters('lighthouse_content_width', 640); | |
| 122 | 122 | } | 
| 123 | -add_action( 'after_setup_theme', 'lighthouse_content_width', 0 ); | |
| 123 | +add_action('after_setup_theme', 'lighthouse_content_width', 0); | |
| 124 | 124 | |
| 125 | 125 | /** | 
| 126 | 126 | * Register widget area. | 
| @@ -128,77 +128,77 @@ discard block | ||
| 128 | 128 | * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar | 
| 129 | 129 | */ | 
| 130 | 130 |  function lighthouse_widgets_init() { | 
| 131 | - register_sidebar( array( | |
| 132 | - 'name' => esc_html__( 'Sidebar', 'lighthouse' ), | |
| 131 | + register_sidebar(array( | |
| 132 | +		'name'          => esc_html__('Sidebar', 'lighthouse'), | |
| 133 | 133 | 'id' => 'sidebar-1', | 
| 134 | 134 | 'description' => '', | 
| 135 | 135 | 'before_widget' => '<section id="%1$s" class="widget %2$s">', | 
| 136 | 136 | 'after_widget' => '</section>', | 
| 137 | 137 | 'before_title' => '<h2 class="widget-title">', | 
| 138 | 138 | 'after_title' => '</h2>', | 
| 139 | - ) ); | |
| 139 | + )); | |
| 140 | 140 | } | 
| 141 | -add_action( 'widgets_init', 'lighthouse_widgets_init' ); | |
| 141 | +add_action('widgets_init', 'lighthouse_widgets_init'); | |
| 142 | 142 | |
| 143 | 143 | /** | 
| 144 | 144 | * Enqueue scripts and styles. | 
| 145 | 145 | */ | 
| 146 | 146 |  function lighthouse_scripts() { | 
| 147 | 147 | |
| 148 | - wp_enqueue_style( 'lighthouse-font-awesome-css', get_template_directory_uri() . '/css/font-awesome.min.css'); | |
| 148 | +	wp_enqueue_style('lighthouse-font-awesome-css', get_template_directory_uri().'/css/font-awesome.min.css'); | |
| 149 | 149 | |
| 150 | - wp_enqueue_style( 'lighthouse-style', get_stylesheet_uri() ); | |
| 150 | +	wp_enqueue_style('lighthouse-style', get_stylesheet_uri()); | |
| 151 | 151 | |
| 152 | 152 |  	wp_enqueue_style('lighthouse-google-fonts', 'https://fonts.googleapis.com/css?family=Questrial'); | 
| 153 | 153 | |
| 154 | 154 |  	//wp_enqueue_style('lighthouse-owl-carousel-css', get_template_directory_uri() . '/css/owl.carousel.css'); | 
| 155 | 155 | |
| 156 | -	wp_enqueue_script( 'lighthouse-classList-js', 'https://cdnjs.cloudflare.com/ajax/libs/classlist/2014.01.31/classList.min.js', array('jquery'), ''); | |
| 156 | +	wp_enqueue_script('lighthouse-classList-js', 'https://cdnjs.cloudflare.com/ajax/libs/classlist/2014.01.31/classList.min.js', array('jquery'), ''); | |
| 157 | 157 | |
| 158 | -	wp_enqueue_script( 'lighthouse-bootstrap-js', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), '', true ); | |
| 158 | +	wp_enqueue_script('lighthouse-bootstrap-js', get_template_directory_uri().'/js/bootstrap.min.js', array('jquery'), '', true); | |
| 159 | 159 | |
| 160 | -	wp_enqueue_script( 'lighthouse-material-menu-js', get_template_directory_uri() . '/js/materialMenu.js', array('jquery'), '', true ); | |
| 160 | +	wp_enqueue_script('lighthouse-material-menu-js', get_template_directory_uri().'/js/materialMenu.js', array('jquery'), '', true); | |
| 161 | 161 | |
| 162 | -	wp_enqueue_script( 'lighthouse-owl-carousel-js', get_template_directory_uri() . '/js/owl-carousel.js', array('jquery'), '', true ); | |
| 162 | +	wp_enqueue_script('lighthouse-owl-carousel-js', get_template_directory_uri().'/js/owl-carousel.js', array('jquery'), '', true); | |
| 163 | 163 | |
| 164 | - wp_enqueue_script( 'lighthouse-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); | |
| 164 | +	wp_enqueue_script('lighthouse-navigation', get_template_directory_uri().'/js/navigation.js', array(), '20120206', true); | |
| 165 | 165 | |
| 166 | -	wp_enqueue_script( 'lighthouse-settings-js', get_template_directory_uri() . '/js/lighthouse-settings.js', array('jquery'), '', true ); | |
| 166 | +	wp_enqueue_script('lighthouse-settings-js', get_template_directory_uri().'/js/lighthouse-settings.js', array('jquery'), '', true); | |
| 167 | 167 | |
| 168 | - wp_enqueue_script( 'lighthouse-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); | |
| 168 | +	wp_enqueue_script('lighthouse-skip-link-focus-fix', get_template_directory_uri().'/js/skip-link-focus-fix.js', array(), '20130115', true); | |
| 169 | 169 | |
| 170 | -	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { | |
| 171 | - wp_enqueue_script( 'comment-reply' ); | |
| 170 | +	if (is_singular() && comments_open() && get_option('thread_comments')) { | |
| 171 | +		wp_enqueue_script('comment-reply'); | |
| 172 | 172 | } | 
| 173 | 173 | } | 
| 174 | -add_action( 'wp_enqueue_scripts', 'lighthouse_scripts' ); | |
| 174 | +add_action('wp_enqueue_scripts', 'lighthouse_scripts'); | |
| 175 | 175 | |
| 176 | 176 | |
| 177 | 177 | /** | 
| 178 | 178 | * Read More button in excerpt | 
| 179 | 179 | */ | 
| 180 | -function new_excerpt_more( $more ) { | |
| 180 | +function new_excerpt_more($more) { | |
| 181 | 181 | return ' '; | 
| 182 | 182 | } | 
| 183 | -add_filter( 'excerpt_more', 'new_excerpt_more' ); | |
| 183 | +add_filter('excerpt_more', 'new_excerpt_more'); | |
| 184 | 184 | |
| 185 | 185 | /** | 
| 186 | 186 | * Custome Lenght of excerpt | 
| 187 | 187 | */ | 
| 188 | -function custom_excerpt_length( $length ) { | |
| 188 | +function custom_excerpt_length($length) { | |
| 189 | 189 | return 18; | 
| 190 | 190 | } | 
| 191 | -add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); | |
| 191 | +add_filter('excerpt_length', 'custom_excerpt_length', 999); | |
| 192 | 192 | |
| 193 | 193 | |
| 194 | 194 | //callback function for the 'clear_content' shortcode | 
| 195 | -function recent_post_slider($atts){ | |
| 195 | +function recent_post_slider($atts) { | |
| 196 | 196 | |
| 197 | 197 | echo'<div class="post-slider row"><div id="recent-posts" class="owl-carousel">'; | 
| 198 | 198 | |
| 199 | 199 | global $post; | 
| 200 | 200 | |
| 201 | - $post_query = new WP_Query( array( | |
| 201 | + $post_query = new WP_Query(array( | |
| 202 | 202 | 'post_type' => 'post', | 
| 203 | 203 | 'posts_per_page' => 12, | 
| 204 | 204 | 'order'=>'DESC', | 
| @@ -206,31 +206,31 @@ discard block | ||
| 206 | 206 | ) | 
| 207 | 207 | ); | 
| 208 | 208 | |
| 209 | - if( $post_query->have_posts() ) : while( $post_query->have_posts() ) : $post_query->the_post(); | |
| 209 | + if ($post_query->have_posts()) : while ($post_query->have_posts()) : $post_query->the_post(); | |
| 210 | 210 | |
| 211 | - $thumb_post = wp_get_attachment_image_src( get_post_thumbnail_id(), 'lighthouse_related_post'); | |
| 211 | + $thumb_post = wp_get_attachment_image_src(get_post_thumbnail_id(), 'lighthouse_related_post'); | |
| 212 | 212 | $url_post = $thumb_post[0]; | 
| 213 | 213 | $content = get_the_content(); | 
| 214 | 214 | |
| 215 | 215 | echo '<div class="col-xs-12"><div class="thumbnail thumbnail-hover">'; | 
| 216 | 216 | |
| 217 | - echo'<img class="img-responsive" src=" ' . $url_post . '">'; | |
| 217 | + echo'<img class="img-responsive" src=" '.$url_post.'">'; | |
| 218 | 218 | |
| 219 | - echo '<a href=" ' . get_permalink() .' " " title=" ' . get_the_title() .' " class="overlay"></a>'; | |
| 219 | + echo '<a href=" '.get_permalink().' " " title=" '.get_the_title().' " class="overlay"></a>'; | |
| 220 | 220 | |
| 221 | 221 | echo'</div>'; | 
| 222 | 222 | |
| 223 | 223 | echo'<div class="entry">'; | 
| 224 | 224 | |
| 225 | - echo '<h3><a href=" ' . get_permalink() . ' "> ' . get_the_title() . '</a></h3>'; | |
| 225 | + echo '<h3><a href=" '.get_permalink().' "> '.get_the_title().'</a></h3>'; | |
| 226 | 226 | |
| 227 | -		echo '<span class="date"> <i class="fa fa-clock-o"></i> ' . get_the_time(get_option('date_format')) .'</span>'; | |
| 227 | +		echo '<span class="date"> <i class="fa fa-clock-o"></i> '.get_the_time(get_option('date_format')).'</span>'; | |
| 228 | 228 | |
| 229 | - echo '<div class="entry-content">' . wp_trim_words( $content , '27' ) . '</div>'; | |
| 229 | + echo '<div class="entry-content">'.wp_trim_words($content, '27').'</div>'; | |
| 230 | 230 | |
| 231 | 231 | echo '<div class="read-more">'; | 
| 232 | 232 | |
| 233 | - echo '<a href="' . get_permalink() . ' " class="btn read-more-btn">View Article</a>'; | |
| 233 | + echo '<a href="'.get_permalink().' " class="btn read-more-btn">View Article</a>'; | |
| 234 | 234 | |
| 235 | 235 | echo '</div>'; | 
| 236 | 236 | |
| @@ -244,42 +244,42 @@ discard block | ||
| 244 | 244 | |
| 245 | 245 | } | 
| 246 | 246 | //add the new 'recent_posts' shortcode | 
| 247 | -add_shortcode('recent_posts','recent_post_slider'); | |
| 247 | +add_shortcode('recent_posts', 'recent_post_slider'); | |
| 248 | 248 | |
| 249 | 249 | // Numbered Pagination | 
| 250 | 250 | function pagination($pages = '', $range = 4) | 
| 251 | 251 |  {   | 
| 252 | - $showitems = ($range * 2)+1; | |
| 252 | + $showitems = ($range * 2) + 1; | |
| 253 | 253 | |
| 254 | 254 | global $paged; | 
| 255 | - if(empty($paged)) $paged = 1; | |
| 255 | + if (empty($paged)) $paged = 1; | |
| 256 | 256 | |
| 257 | - if($pages == '') | |
| 257 | + if ($pages == '') | |
| 258 | 258 |       { | 
| 259 | 259 | global $wp_query; | 
| 260 | 260 | $pages = $wp_query->max_num_pages; | 
| 261 | - if(!$pages) | |
| 261 | + if ( ! $pages) | |
| 262 | 262 |           { | 
| 263 | 263 | $pages = 1; | 
| 264 | 264 | } | 
| 265 | 265 | } | 
| 266 | 266 | |
| 267 | - if(1 != $pages) | |
| 267 | + if (1 != $pages) | |
| 268 | 268 |       { | 
| 269 | 269 | echo "<div class=\"pagination\"><span>Page ".$paged." of ".$pages."</span>"; | 
| 270 | - if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>« First</a>"; | |
| 271 | - if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>‹ Previous</a>"; | |
| 270 | + if ($paged > 2 && $paged > $range + 1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>« First</a>"; | |
| 271 | + if ($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>‹ Previous</a>"; | |
| 272 | 272 | |
| 273 | - for ($i=1; $i <= $pages; $i++) | |
| 273 | + for ($i = 1; $i <= $pages; $i++) | |
| 274 | 274 |           { | 
| 275 | - if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems )) | |
| 275 | + if (1 != $pages && ( ! ($i >= $paged + $range + 1 || $i <= $paged - $range - 1) || $pages <= $showitems)) | |
| 276 | 276 |               { | 
| 277 | - echo ($paged == $i)? "<span class=\"current\">".$i."</span>":"<a href='".get_pagenum_link($i)."' class=\"inactive\">".$i."</a>"; | |
| 277 | + echo ($paged == $i) ? "<span class=\"current\">".$i."</span>" : "<a href='".get_pagenum_link($i)."' class=\"inactive\">".$i."</a>"; | |
| 278 | 278 | } | 
| 279 | 279 | } | 
| 280 | 280 | |
| 281 | 281 | if ($paged < $pages && $showitems < $pages) echo "<a href=\"".get_pagenum_link($paged + 1)."\">Next ›</a>"; | 
| 282 | - if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>Last »</a>"; | |
| 282 | + if ($paged < $pages - 1 && $paged + $range - 1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>Last »</a>"; | |
| 283 | 283 | echo "</div>\n"; | 
| 284 | 284 | } | 
| 285 | 285 | } | 
| @@ -287,24 +287,24 @@ discard block | ||
| 287 | 287 | /** | 
| 288 | 288 | * Implement the Custom Header feature. | 
| 289 | 289 | */ | 
| 290 | -require get_template_directory() . '/inc/custom-header.php'; | |
| 290 | +require get_template_directory().'/inc/custom-header.php'; | |
| 291 | 291 | |
| 292 | 292 | /** | 
| 293 | 293 | * Custom template tags for this theme. | 
| 294 | 294 | */ | 
| 295 | -require get_template_directory() . '/inc/template-tags.php'; | |
| 295 | +require get_template_directory().'/inc/template-tags.php'; | |
| 296 | 296 | |
| 297 | 297 | /** | 
| 298 | 298 | * Custom functions that act independently of the theme templates. | 
| 299 | 299 | */ | 
| 300 | -require get_template_directory() . '/inc/extras.php'; | |
| 300 | +require get_template_directory().'/inc/extras.php'; | |
| 301 | 301 | |
| 302 | 302 | /** | 
| 303 | 303 | * Customizer additions. | 
| 304 | 304 | */ | 
| 305 | -require get_template_directory() . '/inc/customizer.php'; | |
| 305 | +require get_template_directory().'/inc/customizer.php'; | |
| 306 | 306 | |
| 307 | 307 | /** | 
| 308 | 308 | * Load Jetpack compatibility file. | 
| 309 | 309 | */ | 
| 310 | -require get_template_directory() . '/inc/jetpack.php'; | |
| 310 | +require get_template_directory().'/inc/jetpack.php'; | |
| @@ -252,7 +252,9 @@ discard block | ||
| 252 | 252 | $showitems = ($range * 2)+1; | 
| 253 | 253 | |
| 254 | 254 | global $paged; | 
| 255 | - if(empty($paged)) $paged = 1; | |
| 255 | +     if(empty($paged)) { | |
| 256 | + $paged = 1; | |
| 257 | + } | |
| 256 | 258 | |
| 257 | 259 | if($pages == '') | 
| 258 | 260 |       { | 
| @@ -267,8 +269,12 @@ discard block | ||
| 267 | 269 | if(1 != $pages) | 
| 268 | 270 |       { | 
| 269 | 271 | echo "<div class=\"pagination\"><span>Page ".$paged." of ".$pages."</span>"; | 
| 270 | - if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>« First</a>"; | |
| 271 | - if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>‹ Previous</a>"; | |
| 272 | +         if($paged > 2 && $paged > $range+1 && $showitems < $pages) { | |
| 273 | + echo "<a href='".get_pagenum_link(1)."'>« First</a>"; | |
| 274 | + } | |
| 275 | +         if($paged > 1 && $showitems < $pages) { | |
| 276 | + echo "<a href='".get_pagenum_link($paged - 1)."'>‹ Previous</a>"; | |
| 277 | + } | |
| 272 | 278 | |
| 273 | 279 | for ($i=1; $i <= $pages; $i++) | 
| 274 | 280 |           { | 
| @@ -278,8 +284,12 @@ discard block | ||
| 278 | 284 | } | 
| 279 | 285 | } | 
| 280 | 286 | |
| 281 | - if ($paged < $pages && $showitems < $pages) echo "<a href=\"".get_pagenum_link($paged + 1)."\">Next ›</a>"; | |
| 282 | - if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>Last »</a>"; | |
| 287 | +         if ($paged < $pages && $showitems < $pages) { | |
| 288 | + echo "<a href=\"".get_pagenum_link($paged + 1)."\">Next ›</a>"; | |
| 289 | + } | |
| 290 | +         if ($paged < $pages-1 &&  $paged+$range-1 < $pages && $showitems < $pages) { | |
| 291 | + echo "<a href='".get_pagenum_link($pages)."'>Last »</a>"; | |
| 292 | + } | |
| 283 | 293 | echo "</div>\n"; | 
| 284 | 294 | } | 
| 285 | 295 | } | 
| @@ -9,7 +9,7 @@ discard block | ||
| 9 | 9 | <div class="container blog-wrapper"> | 
| 10 | 10 | <div class="row"> | 
| 11 | 11 | <div class="col-xs-12"> | 
| 12 | - <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> | |
| 12 | +				<?php the_title('<h1 class="entry-title">', '</h1>'); ?>
 | |
| 13 | 13 | <h3 class="sub-title">Read the latest articles, commentary in our news blogs</h3> | 
| 14 | 14 | </div> | 
| 15 | 15 | </div> | 
| @@ -19,14 +19,14 @@ discard block | ||
| 19 | 19 | <div class="row"> | 
| 20 | 20 | <div class="col-md-9 blog-listing"> | 
| 21 | 21 | <?php | 
| 22 | - $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; | |
| 22 | +			$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
 | |
| 23 | 23 | $args = array( | 
| 24 | 24 | 'post_type' => 'post', | 
| 25 | 25 | 'posts_per_page' => 6, | 
| 26 | 26 | 'paged' => $paged | 
| 27 | 27 | ); | 
| 28 | - $loop = new WP_Query( $args ); | |
| 29 | - while($loop->have_posts()) : $loop->the_post(); | |
| 28 | + $loop = new WP_Query($args); | |
| 29 | + while ($loop->have_posts()) : $loop->the_post(); | |
| 30 | 30 | |
| 31 | 31 | $postid = get_the_ID(); | 
| 32 | 32 | ?> | 
| @@ -34,7 +34,7 @@ discard block | ||
| 34 | 34 | <article id="post-<?php echo $postid; ?>"> | 
| 35 | 35 | <div class="row blog-item"> | 
| 36 | 36 | <?php | 
| 37 | - $thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), 'lighthouse_blog_listing'); | |
| 37 | + $thumb = wp_get_attachment_image_src(get_post_thumbnail_id(), 'lighthouse_blog_listing'); | |
| 38 | 38 | $url = $thumb[0]; | 
| 39 | 39 | ?> | 
| 40 | 40 | <div class="col-sm-6 col-md-7 blog-thumb"> | 
| @@ -73,7 +73,7 @@ discard block | ||
| 73 | 73 | </div> | 
| 74 | 74 | </div> | 
| 75 | 75 | <div class="col-md-3 sidebar" role="complementary"> | 
| 76 | - <?php dynamic_sidebar( 'blog_widgets' ); ?> | |
| 76 | +	<?php dynamic_sidebar('blog_widgets'); ?>
 | |
| 77 | 77 | </div> | 
| 78 | 78 | </div><!-- .row --> | 
| 79 | 79 | </div><!-- .container --> | 
| @@ -12,17 +12,17 @@ discard block | ||
| 12 | 12 | ?><!DOCTYPE html> | 
| 13 | 13 | <html <?php language_attributes(); ?>> | 
| 14 | 14 | <head> | 
| 15 | - <meta charset="<?php bloginfo( 'charset' ); ?>"> | |
| 15 | +	<meta charset="<?php bloginfo('charset'); ?>"> | |
| 16 | 16 | <meta name="viewport" content="width=device-width, initial-scale=1"> | 
| 17 | 17 | <link rel="profile" href="http://gmpg.org/xfn/11"> | 
| 18 | - <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> | |
| 18 | +	<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>"> | |
| 19 | 19 | |
| 20 | 20 | <?php wp_head(); ?> | 
| 21 | 21 | </head> | 
| 22 | 22 | |
| 23 | 23 | <body <?php body_class(); ?>> | 
| 24 | 24 | <div id="page" class="site"> | 
| 25 | - <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'lighthouse' ); ?></a> | |
| 25 | +		<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e('Skip to content', 'lighthouse'); ?></a> | |
| 26 | 26 | |
| 27 | 27 | <header id="masthead" class="site-header panel-top panel-fixed" role="banner"> | 
| 28 | 28 | <div class="container"> | 
| @@ -37,13 +37,13 @@ discard block | ||
| 37 | 37 | </div> | 
| 38 | 38 | <div class="col-md-6 top-search hidden-xs hidden-sm"> | 
| 39 | 39 | |
| 40 | - <form role="search" method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>"> | |
| 40 | +						<form role="search" method="get" action="<?php echo esc_url(home_url('/')); ?>"> | |
| 41 | 41 | <div class="search-wrap"> | 
| 42 | - <label class="screen-reader-text" for="s"><?php _e( 'Search for:', 'presentation' ); ?></label> | |
| 42 | +						    	<label class="screen-reader-text" for="s"><?php _e('Search for:', 'presentation'); ?></label> | |
| 43 | 43 | <button type="submit"> | 
| 44 | 44 | <i class="fa fa-search"></i> | 
| 45 | 45 | </button> | 
| 46 | - <input type="search" placeholder="<?php echo esc_attr( 'Search', 'presentation' ); ?>" name="s" value="<?php echo esc_attr( get_search_query() ); ?>" /> | |
| 46 | +						        <input type="search" placeholder="<?php echo esc_attr('Search', 'presentation'); ?>" name="s" value="<?php echo esc_attr(get_search_query()); ?>" /> | |
| 47 | 47 | </div> | 
| 48 | 48 | </form> | 
| 49 | 49 | |
| @@ -57,8 +57,8 @@ discard block | ||
| 57 | 57 | </div> | 
| 58 | 58 | </div> | 
| 59 | 59 | <div class="col-sm-12 col-md-2 col-lg-2 header-center-area"> | 
| 60 | - <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> | |
| 61 | - <img src="<?php echo( get_header_image() ); ?>" alt="<?php echo( get_bloginfo( 'title' ) ); ?>" /> | |
| 60 | +							<a href="<?php echo esc_url(home_url('/')); ?>" rel="home"> | |
| 61 | +								<img src="<?php echo(get_header_image()); ?>" alt="<?php echo(get_bloginfo('title')); ?>" /> | |
| 62 | 62 | </a> | 
| 63 | 63 | |
| 64 | 64 | <div class="iv-module live-search"> | 
| @@ -71,9 +71,9 @@ discard block | ||
| 71 | 71 | <div class="container"> | 
| 72 | 72 | <div class="row"> | 
| 73 | 73 | <div class="col-md-12"> | 
| 74 | - <form method="get" action="<?php echo esc_url( home_url( '/' ) );?>"> | |
| 75 | -															<label for="s"><?php _e('Type & hit enter to search', 'ivan_domain');?></label> | |
| 76 | -															<input type="search" name="s" id="s" placeholder="<?php echo esc_attr__('Type & hit enter to search', 'lighthouse');?>" /> | |
| 74 | +														<form method="get" action="<?php echo esc_url(home_url('/')); ?>"> | |
| 75 | +															<label for="s"><?php _e('Type & hit enter to search', 'ivan_domain'); ?></label> | |
| 76 | +															<input type="search" name="s" id="s" placeholder="<?php echo esc_attr__('Type & hit enter to search', 'lighthouse'); ?>" /> | |
| 77 | 77 | <a class="submit-form" href="#"><i class="fa fa-search"></i></a> | 
| 78 | 78 | <div class="clearfix"></div> | 
| 79 | 79 | </form> | 
| @@ -100,9 +100,9 @@ discard block | ||
| 100 | 100 | <div class="container"> | 
| 101 | 101 | <div class="row"> | 
| 102 | 102 | <div class="col-md-12"> | 
| 103 | - <form method="get" action="<?php echo esc_url( home_url( '/' ) );?>"> | |
| 104 | -															<label for="s"><?php _e('Type & hit enter', 'ivan_domain');?></label> | |
| 105 | -															<input type="search" name="s" id="s" placeholder="<?php echo esc_attr__('Type & hit enter', 'lighthouse');?>" /> | |
| 103 | +														<form method="get" action="<?php echo esc_url(home_url('/')); ?>"> | |
| 104 | +															<label for="s"><?php _e('Type & hit enter', 'ivan_domain'); ?></label> | |
| 105 | +															<input type="search" name="s" id="s" placeholder="<?php echo esc_attr__('Type & hit enter', 'lighthouse'); ?>" /> | |
| 106 | 106 | <a class="submit-form" href="#"><i class="fa fa-search"></i></a> | 
| 107 | 107 | <div class="clearfix"></div> | 
| 108 | 108 | </form> |