start_post_rel_link()
Deprecated since 3.3.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Display relational link for the first post.
No Hooks.
Returns
null. Nothing (null).
Usage
start_post_rel_link( $title, $in_same_cat, $excluded_categories );
- $title(string)
- Link title format.
Default:'%title' - $in_same_cat(true|false)
- Whether link should be in a same category.
Default:false - $excluded_categories(string)
- Excluded categories IDs.
Default:''
Changelog
| Since 2.8.0 | Introduced. |
| Deprecated since | 3.3.0 |
start_post_rel_link() start post rel link code WP 6.9.1
function start_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '') {
_deprecated_function( __FUNCTION__, '3.3.0' );
echo get_boundary_post_rel_link($title, $in_same_cat, $excluded_categories, true);
}