<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><?php wp_title(); ?></title>
- <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css?v=1.2.60">
+ <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css?v=1.2.61">
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico">
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,400italic,700' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<?php
- $args = array('numberposts' => 5, 'order_by' => 'date');
+ $args = array('numberposts' => 5, 'order_by' => 'date','cat' => '-70');
$lastposts = get_posts( $args );
if ($lastposts) { ?>
<h2>Recent Posts</h2>
<ul>
<?php
- $args = array( 'numberposts' => '5', 'post_status' => 'publish' );
+ $args = array( 'numberposts' => '5', 'post_status' => 'publish','cat' => '-70' );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> ';
Author: Gaslight Media
Author URI: http://www.gaslightmedia.com
Description: A theme for MountPleasantCVB
-Version: 1.2.60
+Version: 1.2.61
*/