{$adjacent}_post_link

过滤钩子
apply_filters( "{$adjacent}_post_link", $output, $format, $link, $post, $adjacent )
参数
  • (string) $output The adjacent post link.
    Required:
  • (string) $format Link anchor format.
    Required:
  • (string) $link Link permalink format.
    Required:
  • (WP_Post) $post The adjacent post.
    Required:
  • (string) $adjacent Whether the post is previous or next.
    Required:
定义位置
相关勾子
adjacent_post_rel_linkedit_post_linkget_adjacent_post_joinpre_post_linkpost_link
相关方法
adjacent_post_linkget_adjacent_post_linkadjacent_posts_rel_linkget_adjacent_post_rel_linkadjacent_image_linkedit_post_link
引入
4.2.0
弃用
-

{$adjacent}_post_link是一个过滤器,用于修改”上一篇”或”下一篇”文章链接的标记。这个过滤器需要两个参数:链接的HTML输出和链接所指向的文章对象。

过滤相邻的文章链接。

钩子名称的动态部分,$adjacent,指的是相邻的类型,’下一个’或’上一个’。

可能的钩子名称包括:

  • next_post_link
  • previous_post_link
return apply_filters( "{$adjacent}_post_link", $output, $format, $link, $post, $adjacent );

常见问题

FAQs
查看更多 >