"wordpress için twitter" için koduna bir php değişken koymak için çalışıyor

0 Cevap php

Ben wordpress son tweet görüntülemek için eklenti 'Wordpress için twitter' kullanıyorum. gayet iyi çalışıyor ancak kod hattına harcoded twitter hesabının kullanıcı adını gerekir:

<?php 


      twitter_messages('myaccount', 1, false, false, false, true, true, false); 
?>

What im trying to do is replace 'myaccount' with a variable but it doesnt seem to like it. Im getting the variable I want from another function and works fine but tryin to put it into the twitter code wont work:

<?php 
      $twitter = contact_detail('twitter');

      twitter_messages("'".$twitter."'", 1, false, false, false, true, true, false); 
?>

İlk başta değişken üreten fonksiyon değerini yankılanan ama iv dönmek için değişti ama yardım etmedi.

Herhangi bir fikir? Teşekkürler!

0 Cevap