首页 WordPress函数大全 get_links()

get_links()

2020-05-01 / 4980阅 / 悠然

如何你看完本文还不知道如何使用该函数,可以联系我定制视频教程,50元/个函数,学不会全额退款

Warning: This function has been deprecated. Use get_bookmarks() instead.

get_links( int $category = -1, string $before = '', string $after = '<br />', string $between = ' ', bool $show_images = true, string $orderby = 'name', bool $show_description = true, bool $show_rating = false, int $limit = -1, int $show_updated = 1, bool $echo = true )

Gets the links associated with category by id.

描述

See also See also

  • get_bookmarks()

Top ↑

参数

$category

(int)
(Optional)
The category to use. If no category supplied uses all

Default value: -1

$before

(string)
(Optional)
the html to output before the link

Default value: ''

$after

(string)
(Optional)
the html to output after the link

Default value: '<br />'

$between

(string)
(Optional)
the html to output between the link/image and its description. Not used if no image or show_images == true

Default value: ' '

$show_images

(bool)
(Optional)
whether to show images (if defined).

Default value: true

$orderby

(string)
(Optional)
the order to output the links. E.g. 'id', 'name', 'url', 'description', or 'rating'. Or maybe owner. If you start the name with an underscore the order will be reversed. You can also specify 'rand' as the order which will return links in a random order.

Default value: 'name'

$show_description

(bool)
(Optional)
whether to show the description if show_images=false/not defined.

Default value: true

$show_rating

(bool)
(Optional)
show rating stars/chars

Default value: false

$limit

(int)
(Optional)
Limit to X entries. If not specified, all entries are shown.

Default value: -1

$show_updated

(int)
(Optional)
whether to show last updated timestamp

Default value: 1

$echo

(bool)
(Optional)
whether to echo the results, or return them instead

Default value: true

返回

(null|string)

大家谈论
    我的见解