Skip to content

Instantly share code, notes, and snippets.

@ziemekpr0
Created January 8, 2017 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziemekpr0/3f580e85b547e43182a3e08cb7cfcaba to your computer and use it in GitHub Desktop.
Save ziemekpr0/3f580e85b547e43182a3e08cb7cfcaba to your computer and use it in GitHub Desktop.
Dennito dwa bloki reklamow V2
<?php global $theme; get_header(); ?>
<div id="main">
<?php $theme->hook('main_before'); ?>
<div id="content">
<?php $theme->hook('content_before'); ?>
<?php
$is_post_wrap = 0;
if (have_posts()) : while (have_posts()) : the_post();
/**
* The default post formatting from the post.php template file will be used.
* If you want to customize the post formatting for your homepage:
*
* - Create a new file: post-homepage.php
* - Copy/Paste the content of post.php to post-homepage.php
* - Edit and customize the post-homepage.php file for your needs.
*
* Learn more about the get_template_part() function: http://codex.wordpress.org/Function_Reference/get_template_part
*/
$is_post_wrap++;
if($is_post_wrap & 1) {
?><div class="post-wrap clearfix"><?php
}
if($is_post_wrap == 1 || $is_post_wrap == 6) { ?>
<div <?php post_class('post post-box clearfix'); ?> id="post-<?php the_ID(); ?>">
<div class="postmeta-primary">
<span class="meta_date"><?php echo get_the_date(); ?></span>
&nbsp; <span class="meta_comments">1kk użytkowników lubi to!</span>
</div>
<h2 class="title">Reklama:</h2>
[Tutaj dodaj kod reklamy]
</div>
<?php
if(!($is_post_wrap & 1)) {
?></div><div class="post-wrap clearfix"> <?php
}
$is_post_wrap++;
}
get_template_part('post', 'homepage');
if(!($is_post_wrap & 1)) {
?></div><?php
}
endwhile;
else :
get_template_part('post', 'noresults');
endif;
if($is_post_wrap & 1) {
?></div><?php
}
get_template_part('navigation');
?>
<?php $theme->hook('content_after'); ?>
</div><!-- #content -->
<?php get_sidebars(); ?>
<?php $theme->hook('main_after'); ?>
</div><!-- #main -->
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment