2013-11-27 70 views
0

定製的PHP函數,我搜索了很多計算器和谷歌,我發現了一些可能的手冊,但任何這些是爲我工作,所以我來這裏尋找一個解決方案,也是這可以幫助其他看看如何實現WordPress的自定義功能..如何實現WordPress的

我有一個網頁,在其頂部的身體,我打電話使用json與身份驗證我的帳戶的最後一個推特,並在網站上發佈,所以爲了實現在WordPress使一些錯誤403禁止...

所以在index.php文件頂部體在調用的函數是腳本...

<div><p><?php echo webstrategic_processString($twitter); ?></p></div> 

哪裏是函數(在同一文件夾functios.php)的文件是這樣的:

/* start function twitter texts twitter api v1.1*/ 
require_once("./twitteroauth.php"); //Path to twitteroauth library 

$twitteruser = "someuser"; 
$notweets = 1; 
$consumerkey = "8kZ6edmqkvCuGg"; 
$consumersecret = "uG0Qpd4BiyfUHYn250xCkFU"; 
$accesstoken = "37248546-DNmlMoDoLBmapEGydhwNFRiq5"; 
$accesstokensecret = "QolC4RhQHYErAxsBQlgGzBfu3dXM0"; 

function getConnectionWithAccessToken($cons_key, $cons_secret, $oauth_token, $oauth_token_secret) { 
    $connection = new TwitterOAuth($cons_key, $cons_secret, $oauth_token, $oauth_token_secret); 
    return $connection; 
} 

$connection = getConnectionWithAccessToken($consumerkey, $consumersecret, $accesstoken, $accesstokensecret); 
$tweets = $connection->get("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=".$twitteruser."&count=".$notweets); 
$twitter = json_encode($tweets[0]->text); 
$twitter = substr($twitter, 1, -1); 

function processString($twitter) { 
    return preg_replace(array('/https?:\/\/[\w\-\.!~?&+\*\'"(),\/]+/', '#@([\\d\\w]+)#', '/#([\\d\\w]+)/'), array('<a href="$0" rel="nofollow" target="_blank">$0</a>', '<a href="http://twitter.com/$1" rel="nofollow" target="_blank">$0</a>','<a href="http://twitter.com/search?q=%23$1&amp;src=hash" rel="nofollow" target="_blank">$0</a>'), $twitter); 
} 
$twitter = preg_replace("/\\\\u([0-9abcdef]{4})/", "&#x$1;", $tweets[0]->text); // this line changes from unicode to utf-8 

的問題是,如何應用這方面比我在的functions.php到WordPress功能,使能使用我的wordpress主題,並在wp標題主題和工作中調用函數?使用下一行代碼:

<div><p><?php echo webstrategic_processString($twitter); ?></p></div> 

謝謝! ='(

回答

0

您必須先註冊您的自定義功能,當模板被渲染的標題,裏面你的主題functions.php

add_action('wp_head', 'echo_twitter'); 

function echo_twitter() { 
    global $twitter; 
    // assuming your $twitter variable is available as a global 
    echo '<div><p>'.webstrategic_processString($twitter).'</p></div>'; 
} 

See here for more info on using Wordpress hooks and using them in themes.

+1

這將呼應''內所需的HTML來運行。元素,這是無效的標記相反,開口''標籤這樣後添加自定義動作:<?PHP do_action( 'after_body');>'' 然後,更改線'ADD_ACTION( 'wp_head', 'echo_twitter');''add_action('after_body','echo_twitter');' – Anastis

+0

我嘗試t Ø實現這種形式,但我想從模板文件調用的函數,可以說正是我想在html的回聲......(因爲它的形式打印在網站的頂部!也該網站正在做一些錯誤403禁止,我不知道爲什麼是這個錯誤! :S 這是鏈接:[diseñoweb](http://www.clonick.com/blog/) –