wpseek.com
A WordPress-centric search engine for devs and theme authors
previous_post is deprecated since version 2.0.0!
Alternative: previous_post_link()
Alternative: previous_post_link()
previous_post › WordPress Function
Since1.5.0
Deprecated2.0.0
› previous_post ( $format = '%', $previous = 'previous post: ', $title = 'yes', $in_same_cat = 'no', $limitprev = 1, $excluded_categories = '' )
Parameters: (6) |
|
See: | |
Defined at: |
|
Codex: |
Prints a link to the previous post.
Related Functions: previous_posts, get_previous_post, previous_post_link, previous_posts_link, get_previous_post_link
Source
function previous_post($format='%', $previous='previous post: ', $title='yes', $in_same_cat='no', $limitprev=1, $excluded_categories='') { _deprecated_function( __FUNCTION__, '2.0.0', 'previous_post_link()' ); if ( empty($in_same_cat) || 'no' == $in_same_cat ) $in_same_cat = false; else $in_same_cat = true; $post = get_previous_post($in_same_cat, $excluded_categories); if ( !$post ) return; $string = '<a href="'.get_permalink($post->ID).'">'.$previous; if ( 'yes' == $title ) $string .= apply_filters('the_title', $post->post_title, $post->ID); $string .= '</a>'; $format = str_replace('%', $string, $format); echo $format; }