wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_next_image_link › WordPress Function

Since5.8.0
已弃用n/a
get_next_image_link ( $size = 'thumbnail', $text = false )
参数: (2)
  • (string|int[]) $size Optional. Image size. Accepts any registered image size name, or an array of width and height values in pixels (in that order). Default 'thumbnail'.
    Required: No
    默认: 'thumbnail'
  • (string|false) $text Optional. Link text. Default false.
    Required: No
    默认: false
查看:
返回:
  • (string) Markup for next image link.
定义在:
文档:

Gets the next image link that has the same post parent.



源码

function get_next_image_link( $size = 'thumbnail', $text = false ) {
	return get_adjacent_image_link( false, $size, $text );
}