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



edit_post_link › WordPress Function

Since1.0.0
已弃用n/a
edit_post_link ( $text = null, $before = '', $after = '', $post = 0, $css_class = 'post-edit-link' )
参数: (5)
  • (string) $text Optional. Anchor text. If null, default is 'Edit This'. Default null.
    Required: No
    默认: null
  • (string) $before Optional. Display before edit link. Default empty.
    Required: No
    默认: (empty)
  • (string) $after Optional. Display after edit link. Default empty.
    Required: No
    默认: (empty)
  • (int|WP_Post) $post Optional. Post ID or post object. Default is the global `$post`.
    Required: No
    默认:
  • (string) $css_class Optional. Add custom class to link. Default 'post-edit-link'.
    Required: No
    默认: 'post-edit-link'
定义在:
文档:
Change Log:
  • 4.4.0

Displays the edit post link for post.



源码

function edit_post_link( $text = null, $before = '', $after = '', $post = 0, $css_class = 'post-edit-link' ) {
	$post = get_post( $post );

	if ( ! $post ) {
		return;
	}

	$url = get_edit_post_link( $post->ID );

	if ( ! $url ) {
		return;
	}

	if ( null === $text ) {
		$text = __( 'Edit This' );
	}

	$link = '<a class="' . esc_attr( $css_class ) . '" href="' . esc_url( $url ) . '">' . $text . '</a>';

	/**
	 * Filters the post edit link anchor tag.
	 *
	 * @since 2.3.0
	 *
	 * @param string $link    Anchor tag for the edit link.
	 * @param int    $post_id Post ID.
	 * @param string $text    Anchor text.
	 */
	echo $before . apply_filters( 'edit_post_link', $link, $post->ID, $text ) . $after;
}