PHP Asynchroner Twitter-ButtonfürWordpress博客

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Asynchroner Twitter-ButtonfürWordpress博客相关的知识,希望对你有一定的参考价值。

<?php
$asynctwitter_your_screen_name = 'deluxe_domina';
$asynctwitter_your_blog_uri = 'http://www.deluxe-site.com';
$asynctwitter_your_blog_title = 'Diamond Deluxe - berührbare Domina in Düsseldorf';
?>
<script type="text/javascript">
/* async, non-blocking twitter script */ 
(function() { 
	var s = document.createElement("SCRIPT"); 
	var c = document.getElementsByTagName("script")[0]; 
	s.type = "text/javascript"; 
	s.async = true; 
	s.src = "http://platform.twitter.com/widgets.js"; 
	c.parentNode.insertBefore(s, c); 
	})(); 
</script><a 	
	href="http://twitter.com/share?url=<?php echo(urlencode('<?php echo($asynctwitter_your_blog_uri); ?>'.$_SERVER['REQUEST_URI'])); ?>" 
	class="twitter-share-button"
	data-count="horizontal" 
	data-via="<?php echo($asynctwitter_your_screen_name); ?>" 
	data-text="<?php 
		$output = wp_title('-', false, 'right'); 
		$output = preg_replace('/–/ui', '-', $output); 
		$output .= $asynctwitter_your_blog_title;  
		if($paged > 0) { 
			$output .= ' (Seite '.$paged.')'; 
		} 
		$output = mb_substr($output, 0, 100, 'UTF-8').'...'; 
		echo($output); 
	?>">Tweet</a>

以上是关于PHP Asynchroner Twitter-ButtonfürWordpress博客的主要内容,如果未能解决你的问题,请参考以下文章

linux 安装多个PHP版本(php5.6 php7.1 php7.2 php7.3 php7.4 php8.0)nginx配置php多版本

php [guzzle php] guzzle php #php

php send.php php邮件模板#php

IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?

如何从php5升级到php7

请问php中如何调用php文件中的内容?