Пример #1
0
/**
 * Displays next image link that has the same post parent.
 *
 * @since 2.5.0
 *
 * @see adjacent_image_link()
 *
 * @param string|array $size Optional. Image size. Accepts any valid image size, an array of width and
 *                           height values in pixels (in that order), 0, or 'none'. 0 or 'none' will
 *                           default to 'post_title' or `$text`. Default 'thumbnail'.
 * @param string       $text Optional. Link text. Default false.
 */
function next_image_link($size = 'thumbnail', $text = false)
{
    adjacent_image_link(false, $size, $text);
}
Пример #2
0
function next_image_link()
{
    adjacent_image_link(false);
}