Skip to content

Instantly share code, notes, and snippets.

@gegeriyadi
Created August 18, 2017 07:28
Show Gist options
  • Save gegeriyadi/e030fd40bc1ae9f904c9b530a3175475 to your computer and use it in GitHub Desktop.
Save gegeriyadi/e030fd40bc1ae9f904c9b530a3175475 to your computer and use it in GitHub Desktop.
fix page layout kecebingit
<?php if (!defined('IS_IN_SCRIPT')) { die(); exit; } ?>
<?php get_header(); ?>
<div class="smart_content col-9-12">
<?php if (have_posts()) :?>
<?php while (have_posts()) : the_post(); ?>
<?php endwhile; ?>
<div class="box-checkout ongkircek">
<h2><?php the_title(); ?></h2>
<span class="meta-dt">Kategori <a href="<?php bloginfo('url');?>/blog" title="blog">Blog</a></span>
<?php the_content(); ?>
<p class="meta_tags"><?php the_terms( get_the_ID(), 'blog-tags', '', ', ', '' ); ?></p>
</div> <?php else : ?>
<h2>Not Found</h2>
<div class="bodycontent">Sorry, but you are looking for something that isn't here.</div>
<?php endif; ?>
<?php //include LAPAKINSTANPATH.'/product.php'; ?>
</div>
<div class="sidebox col-3-12 visible-desktop">
<?php include TEMPLATEPATH.'/sidebar-right.php'; ?>
<div class="clear"></div>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment