0

我需要自定义类来过滤 wp_get_attachment_link。所以我是这样的:

function modify_attachment_link( $markup ) {
global $post;
return str_replace( '<a href', '<a class="view" rel="galleryid-'. $post->ID .'" href', $markup );
}
add_filter( 'wp_get_attachment_link', 'modify_attachment_link' );

它工作正常。但是,如果将缩略图链接到:附件页面,我需要做的是我的意思是在这种情况下我不需要自定义类。请问有什么帮助吗?

wp_get_attachment_link 的核心功能是:

function wp_get_attachment_link( $id = 0, $size = 'thumbnail', $permalink = false, $icon = false, $text = false ) {
$id = intval( $id );
$_post = & get_post( $id );

if ( empty( $_post ) || ( 'attachment' != $_post->post_type ) || ! $url = wp_get_attachment_url( $_post->ID ) )
    return __( 'Missing Attachment' );

if ( $permalink )
    $url = get_attachment_link( $_post->ID );

$post_title = esc_attr( $_post->post_title );

if ( $text )
    $link_text = esc_attr( $text );
elseif ( $size && 'none' != $size )
    $link_text = wp_get_attachment_image( $id, $size, $icon );
else
    $link_text = '';

if ( trim( $link_text ) == '' )
    $link_text = $_post->post_title;

return apply_filters( 'wp_get_attachment_link', "<a href='$url' title='$post_title'>$link_text</a>", $id, $size, $permalink, $icon, $text );
}

所以我的意思是如果( $permalink )我不需要为这个函数添加自定义类。

4

1 回答 1

2

尝试

function modify_attachment_link( $markup, $id, $size, $permalink ) {
    global $post;
    if ( ! $permalink ) {
        $markup = str_replace( '<a href', '<a class="view" rel="galleryid-'. $post->ID .'" href', $markup );
    }
    return $markup;
}
add_filter( 'wp_get_attachment_link', 'modify_attachment_link', 10, 4 );

这可能有效

于 2012-06-16T20:48:04.733 回答