php 使用AddThis共享按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用AddThis共享按钮相关的知识,希望对你有一定的参考价值。

add_filter( 'genesis_post_meta', __NAMESPACE__ . '\customize_post_meta' );
/**
 * Customize the post meta
 *
 * @param $post_meta
 *
 * @return string
 */
function customize_post_meta( $post_meta ) {

	$post_meta = '[post_tags before=""]';

	$post_meta .= '<div class="addthis_toolbox">
					  <div class="custom_images">
					    <a class="addthis_button_facebook"><i class="fa fa-facebook" title="Share to Facebook"></i></a>
					    <a class="addthis_button_twitter"><i class="fa fa-twitter" title="Share to Twitter"></i></a>
					    <a class="addthis_button_pinterest"><i class="fa fa-pinterest-p" title="Share to Pinterest"></i></a>
					  </div>
					</div>';

	return $post_meta;
}

以上是关于php 使用AddThis共享按钮的主要内容,如果未能解决你的问题,请参考以下文章