0

我正在尝试操作以下代码以在新选项卡中打开链接。它嵌入在 fancybox 1.3.4 弹出窗口中。问题是添加 target="_blank" 并且 onclick 函数被忽略并导致链接在父页面中打开。我也尝试过使用 javascript void (0) target"_blank" 并设法将页面留在新选项卡中,但是新页面出现时是空白的。

这是我试图操作离开fancybox并在新选项卡中打开的代码行:

$link = ($attachment_meta)? "<a href='$attachment_meta'>$image</a>" : $image;

ex: $link = ($attachment_meta)? "<a href='$attachment_meta'
target'_blank'>$image</a>" : $image; <-- adding target_blank in code
does not work!--

这是代码片段:

if( 'custom' == $attr['link']){
      $image = wp_get_attachment_image($id, $size, false);
      $attachment_meta = get_post_meta($id, '_rt-image-link', true);
 $link = ($attachment_meta)? "<a href='$attachment_meta'>$image</a>" : $image;
} else {
      $link = isset($attr['link']) && 'file' == $attr['link'] ? wp_get_attachment_link($id, $size, false, false) : wp_get_attachment_link($id, $size, true, false);
  }

      $output .= "<{$itemtag} class='gallery-item'>";
     $output .= "
<{$icontag} class='gallery-icon'>
$link
</{$icontag}>";
     if ( $captiontag && trim($attachment->post_excerpt) ) {
     $output .= "
<{$captiontag} class='wp-caption-text gallery-caption'>
" . wptexturize($attachment->post_excerpt) . "
</{$captiontag}>";
     }
     $output .= "</{$itemtag}>";
     if ( $columns > 0 && ++$i % $columns == 0 )
     $output .= '<br style="clear: both" />';

}
4

0 回答 0