このプラグインコードを持っています

function add_neori_social_share_buttons_icons($atts){ global $post; $url = get_permalink($post->ID); $url = esc_url($url); $media = wp_get_attachment_url( get_post_thumbnail_id($post->ID)); $media = esc_url($media); $description = get_the_title($post->ID); $description = esc_html($description); $html = $html . "<a target="_blank" href="http://www.facebook.com/sharer.php?u=" . $url . ""><div class="icon-social-facebook col"></div></a>"; $html = $html . "<a target="_blank" href="https://twitter.com/share?url=" . $url . ""><div class="icon-social-twitter col"></div></a>"; $html = $html . "<a target="_blank" href="mailto:?subject=I wanted to share this post with you from&body=" . $url . ""><i class="fa fa-envelope-o"></i></a>"; $html = $html . "<a onclick="myFunction()" href="JavaScript:void(0)"><i class="fa fa-print"></i></a>"; $html = $html . "</div>"; return $content = $content . $html; } add_shortcode("neori-social-share-icons", "add_neori_social_share_buttons_icons"); 

投稿セクションに4つのアイコンが表示されますが、最後の印刷アイコンが表示されます。私が何をしても、アンカータグのonclick属性は出力されません。

これがその4つのアイコンの投稿URLです。

http://mandybright.promogent.com/victims-of-the-border-husband-of-u-s-citizen-wife-disappears-after-desert-crossing/

コメント

  • もっと意味がないでしょうかIDまたはhtmlクラスを追加してから、キューに入れられたjavascriptファイルでjQuery(".onprint").click( ... )のようなことを行いますか?onClickハンドラーは悪い習慣であり、100%回避できます。 ' JavaScriptをショートコードに直接入れる必要はありません

回答

WPはコンテンツからonclickを削除していると思います。とにかくインラインonclickを実際に使用するべきではありません。

リンクにIDを付けてから、JSにonclickを追加します。このようなもの…

jQuery("#myLink").click(function() { ... Your myFunction() code }); 

コメント

  • うまくいきました

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です