WordPress Custom Theme Page
WordPress Custom Theme Page. Bu yazımızda wordpress custom tema yaparken page kısmında kullanılan kod listesi bulunmaktadır. Bu kodlar ile page kısmını yapabilirsiniz.
<?php get_header();?>
<content>
<div>
<h1>
<?php the_title(); ?>
</h1>
<hr>
<div>
<!-- #################################### -->
<span>
<?php if (has_post_thumbnail()): ?>
<img src="<?php the_post_thumbnail_url() ?>" alt="logo">
<?php endif ?>
<?php if (have_posts()) : while (have_posts()) : the_post() ?>
<div>
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
</span>
</div>
</div>
</content>
<?php get_footer();?>
Bir cevap yaz