“get_boundary_post wordpress” Kode Jawaban

get_boundary_post wordpress

<?php
  // Link with title of latest post in current post’s category
   $latest= get_boundary_post(true, '', false, 'category');
   if (!empty($latest)) { foreach ($latest as $post) { ?>
   <a href="<?php echo the_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a>
<?php }} ?>
Innocent Ibis

get_boundary_post wordpress

<?php
  // Link with title of first post in current post’s category
   $first= get_boundary_post(true, '', true, 'category');
   if (!empty($first)) { foreach ($first as $post) { ?>
   <a href="<?php echo the_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a>
<?php }} ?>
Innocent Ibis

Jawaban yang mirip dengan “get_boundary_post wordpress”

Pertanyaan yang mirip dengan “get_boundary_post wordpress”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya