2014-02-19 89 views
0

我想在Facebook/Twitter分享中添加帖子/頁面url,但由於我對wordpress的知識知之甚少,我不知道該怎麼做。WordPresspress在Facebook/Twitter上分享頁面/發佈url /路徑分享

我加echo get_permalink()但這不起作用。位於function.php

代碼

$string .= '<li class="facebook" id="facebook"><a href="https://www.facebook.com/sharer/sharer.php?u=echo get_permalink()">Facebook</a></li>'; 

回答

1

你混合你的PHP ..

改變這種

$string .= '<li class="facebook" id="facebook"><a href="https://www.facebook.com/sharer/sharer.php?u= <?php echo get_permalink() ; ?> ">Facebook</a></li>'; 

這個

$string .= '<li class="facebook" id="facebook"><a href="https://www.facebook.com/sharer/sharer.php?u='.get_post_permalink().'">Facebook</a></li>'; 

或可讀性

$string.= '<li class="facebook" id="facebook">'; 
$string.= '<a href="https://www.facebook.com/sharer/sharer.php?u='; 
$string.= get_post_permalink(); 
$string.= '">Facebook</a></li>'; 

看看到php string concatenation