Mam ten kod wtyczki
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");
wyświetla cztery ikony w sekcji wiadomości, ale dla ostatniej ikony drukowania. Nie umieszcza atrybutu onclick tagu kotwicy bez względu na to, co robię.
Oto adres URL posta dla tych 4 ikon.
Komentarze
Odpowiedź
Myślę, że WP usuwa onclick z treści. I tak naprawdę nie powinieneś używać inline onclick.
Daj linkowi identyfikator, a następnie dodaj kliknięcie w swoim JS. Coś takiego …
jQuery("#myLink").click(function() { ... Your myFunction() code });
Komentarze
- Dziękuję, udało się
jQuery(".onprint").click( ... )
w kolejkowanym pliku javascript? nie powinieneś ' nie umieszczać javascript bezpośrednio w krótkim kodzie