返回介绍

get_edit_term_link()

发布于 2017-09-10 23:18:58 字数 4122 浏览 1028 评论 0 收藏 0

get_edit_term_link( int $term_id,  string $taxonomy = '',  string $object_type = '' )

Retrieves the URL for editing a given term.


description


参数

$term_id

(int) (Required) Term ID.

$taxonomy

(string) (Optional) Taxonomy. Defaults to the taxonomy of the term identified by $term_id.

Default value: ''

$object_type

(string) (Optional) The object type. Used to highlight the proper post type menu on the linked page. Defaults to the first object_type associated with the taxonomy.

Default value: ''


返回值

(string|null) The edit term link URL for the given term, or null on failure.


源代码

File: wp-includes/link-template.php

function get_edit_term_link( $term_id, $taxonomy = '', $object_type = '' ) {
	$term = get_term( $term_id, $taxonomy );
	if ( ! $term || is_wp_error( $term ) ) {
		return;
	}

	$tax = get_taxonomy( $term->taxonomy );
	if ( ! $tax || ! current_user_can( 'edit_term', $term->term_id ) ) {
		return;
	}

	$args = array(
		'taxonomy' => $taxonomy,
		'tag_ID'   => $term->term_id,
	);

	if ( $object_type ) {
		$args['post_type'] = $object_type;
	} elseif ( ! empty( $tax->object_type ) ) {
		$args['post_type'] = reset( $tax->object_type );
	}

	if ( $tax->show_ui ) {
		$location = add_query_arg( $args, admin_url( 'term.php' ) );
	} else {
		$location = '';
	}

	/**
	 * Filters the edit link for a term.
	 *
	 * @since 3.1.0
	 *
	 * @param string $location    The edit link.
	 * @param int    $term_id     Term ID.
	 * @param string $taxonomy    Taxonomy name.
	 * @param string $object_type The object type (eg. the post type).
	 */
	return apply_filters( 'get_edit_term_link', $location, $term_id, $taxonomy, $object_type );
}

更新日志

Versiondescription
4.5.0The $taxonomy argument was made optional.
3.1.0Introduced.

相关函数

Uses

  • wp-includes/capabilities.php: current_user_can()
  • wp-includes/functions.php: add_query_arg()
  • wp-includes/taxonomy.php: get_term()
  • wp-includes/taxonomy.php: get_taxonomy()
  • wp-includes/link-template.php: admin_url()
  • wp-includes/link-template.php: get_edit_term_link
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/load.php: is_wp_error()
  • Show 3 more uses Hide more uses

Used By

  • wp-admin/includes/class-wp-terms-list-table.php: WP_Terms_List_Table::handle_row_actions()
  • wp-admin/includes/class-wp-terms-list-table.php: WP_Terms_List_Table::column_name()
  • wp-includes/category-template.php: wp_tag_cloud()
  • wp-includes/link-template.php: get_edit_tag_link()
  • wp-includes/link-template.php: edit_term_link()
  • wp-includes/admin-bar.php: wp_admin_bar_edit_menu()
  • Show 1 more used by Hide more used by

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note Contributed by Codex

    Get term’s link to edit

    $edit_link = esc_url( get_edit_term_link( $tag->term_id, $taxonomy, $this->screen->post_type ) );

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

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

发布评论

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