Exemplo n.º 1
0
if (!defined('ABSPATH')) {
    exit;
}
/**
 * The loop that displays posts.
 *
 * @package Sampression-Lite
 * @since Sampression Lite 1.0
 */
?>

<article id="post-<?php 
the_ID();
?>
" class="post columns four item <?php 
echo sampression_cat_slug();
?>
 <?php 
if (is_sticky() && is_home()) {
    echo 'sticky corner-stamp';
} else {
    echo 'item';
}
?>
" data-groups='["all", <?php 
$count = sampression_cat_count();
$i = 1;
foreach (get_the_category() as $category) {
    if ($i < $count) {
        $item = ', ';
    } else {
Exemplo n.º 2
0
function sampression_filter_cat_callback()
{
    $slug = $_POST['category'];
    $exc = $_POST['exclude'];
    $exclude = explode('~', $exc);
    query_posts(array('category_name' => $slug, 'post__not_in' => $exclude, 'post_status' => 'publish'));
    while (have_posts()) {
        the_post();
        ?>
   <article id="post-<?php 
        the_ID();
        ?>
" class="post item columns four <?php 
        echo sampression_cat_slug();
        ?>
 ">
      <h3 class="post-title"><a href="<?php 
        the_permalink();
        ?>
" title="<?php 
        echo esc_attr(get_the_title());
        ?>
" rel="bookmark" ><?php 
        the_title();
        ?>
</a></h3>
      
      <?php 
        if (has_post_thumbnail()) {
            ?>
        <div class="featured-img">
        <a href="<?php 
            the_permalink();
            ?>
" title="<?php 
            echo esc_attr(the_title_attribute('echo=0'));
            ?>
" ><?php 
            the_post_thumbnail('large');
            ?>
</a>
        </div>
		<!-- .featured-img -->
      <?php 
        }
        ?>
      
      <div class="entry">
        <?php 
        the_excerpt();
        ?>
      </div>
      <!-- .entry -->

      <div class="meta clearfix">
			<?php 
        printf(__('%3$s <time class="col" datetime="2011-09-28"><span class="ico">Published on</span>%2$s</time> ', 'sampression'), 'meta-prep meta-prep-author', sprintf('<a href="%1$s" title="%2$s" rel="bookmark">%3$s</a>', get_permalink(), esc_attr(get_the_time()), get_the_date('d M Y')), sprintf('<div class="post-author col"><span class="ico hello">Author</span><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></div>', get_author_posts_url(get_the_author_meta('ID')), sprintf(esc_attr__('View all posts by %s', 'sampression'), get_the_author()), get_the_author()));
        ?>

			<?php 
        if (comments_open()) {
            ?>
            <span class="col count-comment">
            <span class="pointer"></span>
            <?php 
            comments_popup_link(__('0', 'sampression'), __('1', 'sampression'), __('%', 'sampression'));
            ?>
            </span>
            <?php 
        }
        ?>
        
        
      </div>
      <div class="meta">
        <div class="cats"><?php 
        printf(__('<span class="ico">Categories</span><div class="overflow-hidden cat-listing">%s</div>', 'sampression'), get_the_category_list(', '));
        ?>
</div>
      </div>
    </article>
	<?php 
    }
    wp_reset_query();
    die;
}