Skip to content

Instantly share code, notes, and snippets.

@ziemekpr0
Last active January 8, 2017 10:20
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/176812973be11cadd02fdd79ead7cce3 to your computer and use it in GitHub Desktop.
Save ziemekpr0/176812973be11cadd02fdd79ead7cce3 to your computer and use it in GitHub Desktop.
Kod reklamy w drugim bloku. Motyw denitto.
<?php global $theme; get_header(); ?>
<div id="main">
<?php $theme->hook('main_before'); ?>
<div id="content">
<?php $theme->hook('content_before'); ?>
<?php
$counter = 0;
$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++;
$counter++;
if($is_post_wrap == '1') {
?><div class="post-wrap clearfix"><?php
}
if($counter == 2)
{ ?>
<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>
</div><div class="post-wrap clearfix"><!-- post wrap -->
<?php
$is_post_wrap--;
}
get_template_part('post', 'homepage');
if($is_post_wrap == '2') {
$is_post_wrap = 0;
?></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