-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsocial-share-overlay.php
44 lines (42 loc) · 2.71 KB
/
social-share-overlay.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
* @author Kim-Christian Meyer <[email protected]>
* @package digitale-pracht
*/
$social_share_url = rawurlencode( get_permalink() );
$title = rawurlencode( get_the_title() );
$tweet = rawurlencode( digitalepracht_compose_tweet_text() );
$mail_subject = $title . rawurlencode( sprintf( ' (' . __( 'Article from %s', 'digitale-pracht' ) . ')', get_bloginfo( 'name' ) ) );
$mail_body = rawurlencode( __( 'Maybe that would be something interesting for you:', 'digitale-pracht' ) . "\r\n" ) . $social_share_url;
$whatsapp = rawurlencode( __( 'Maybe that would be something interesting for you:', 'digitale-pracht' ) . "\r\n" ) . $social_share_url;
?>
<div id="share" class="ph-overlay ph-overlay-share no-print">
<strong class="ph-overlay-title"><?php _e( 'Share content', 'digitale-pracht' ); ?></strong>
<div class="ph-overlay-content">
<ul class="ph-overlay-share-list">
<li class="ph-overlay-share-list-item"><a
class="ph-overlay-share-btn ph-social-media-icon is-solid is-huge ph-social-media-icon-mail"
href="<?php echo esc_url( 'mailto:?subject=' . $mail_subject . '&body=' . $mail_body, array( 'mailto' ) ); ?>"><span
class="ph-overlay-share-label"><?php _e( 'E-Mail', 'digitale-pracht' ); ?></span></a></li>
<li class="ph-overlay-share-list-item"><a
class="ph-overlay-share-btn ph-social-media-icon is-solid is-huge ph-social-media-icon-whatsapp"
href="<?php echo esc_url( 'whatsapp://send?text=' . $whatsapp, array( 'whatsapp' ) ); ?>"><span
class="ph-overlay-share-label"><?php _e( 'Whatsapp', 'digitale-pracht' ); ?></span></a></li>
<li class="ph-overlay-share-list-item"><a
class="ph-overlay-share-btn ph-social-media-icon is-solid is-huge ph-social-media-icon-googleplus"
href="<?php echo esc_url( 'https://plus.google.com/share?url=' . $social_share_url ); ?>"
target="_blank"><span
class="ph-overlay-share-label"><?php _e( 'Google+', 'digitale-pracht' ); ?></span></a></li>
<li class="ph-overlay-share-list-item"><a
class="ph-overlay-share-btn ph-social-media-icon is-solid is-huge ph-social-media-icon-twitter"
href="<?php echo esc_url( 'https://twitter.com/intent/tweet?text=' . $tweet ); ?>"
target="_blank"><span
class="ph-overlay-share-label"><?php _e( 'Twitter', 'digitale-pracht' ); ?></span></a></li>
<li class="ph-overlay-share-list-item"><a
class="ph-overlay-share-btn ph-social-media-icon is-solid is-huge ph-social-media-icon-facebook"
href="<?php echo esc_url( 'https://www.facebook.com/sharer.php?u=' . $social_share_url ); ?>"
target="_blank"><span class="ph-overlay-share-label"><?php _e( 'Facebook', 'digitale-pracht' ); ?></span></a>
</li>
</ul>
</div>
</div>