Horje
get_boundary_post wordpress Code Example
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 rel="nofollow" href="<?php echo the_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a>
<?php }} ?>
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 rel="nofollow" href="<?php echo the_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a>
<?php }} ?>




Php

Related
append file in php Code Example append file in php Code Example
wordpress query orderby name Code Example wordpress query orderby name Code Example
multiple selected checkbox values in database Code Example multiple selected checkbox values in database Code Example
laravel eloquent only today Code Example laravel eloquent only today Code Example
get number of chars ina  string php Code Example get number of chars ina string php Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9