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 );
}

つまり、if ( $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 に答える