返回介绍

wp_link_category_checklist()

发布于 2017-09-11 12:21:19 字数 2409 浏览 1026 评论 0 收藏 0

wp_link_category_checklist( int $link_id )

Outputs a link category checklist element.


description


参数

$link_id

(int) (Required)


源代码

File: wp-admin/includes/template.php

function wp_link_category_checklist( $link_id = 0 ) {
	$default = 1;

	$checked_categories = array();

	if ( $link_id ) {
		$checked_categories = wp_get_link_cats( $link_id );
		// No selected categories, strange
		if ( ! count( $checked_categories ) ) {
			$checked_categories[] = $default;
		}
	} else {
		$checked_categories[] = $default;
	}

	$categories = get_terms( 'link_category', array( 'orderby' => 'name', 'hide_empty' => 0 ) );

	if ( empty( $categories ) )
		return;

	foreach ( $categories as $category ) {
		$cat_id = $category->term_id;

		/** This filter is documented in wp-includes/category-template.php */
		$name = esc_html( apply_filters( 'the_category', $category->name ) );
		$checked = in_array( $cat_id, $checked_categories ) ? ' checked="checked"' : '';
		echo '<li id="link-category-', $cat_id, '"><label for="in-link-category-', $cat_id, '" class="selectit"><input value="', $cat_id, '" type="checkbox" name="link_category[]" id="in-link-category-', $cat_id, '"', $checked, '/> ', $name, "</label></li>";
	}
}

更新日志

Versiondescription
2.5.1Introduced.

相关函数

Uses

  • wp-admin/includes/bookmark.php: wp_get_link_cats()
  • wp-includes/category-template.php: the_category
  • wp-includes/formatting.php: esc_html()
  • wp-includes/taxonomy.php: get_terms()
  • wp-includes/plugin.php: apply_filters()

Used By

  • wp-admin/includes/deprecated.php: dropdown_link_categories()
  • wp-admin/includes/meta-boxes.php: link_categories_meta_box()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文