How to acces the twitter user profile link?

You can take below steps as guideline. After logged in user, you can display one form to add twitter URL. After submitting that form by user, add this form info by using add_user_meta for logged in user. Reference; add_user_meta And added information will get by get_user_meta

Why isn’t my Twitter widget working in my theme?

It is hard to say for sure with those floating sidebars, CSS is huge pain to work through. On the outer layer whole div that holds your widget has display: none; property applied and there are couple more places with same property applied to parts of twitter widget. Overall this seems like a huge CSS … Read more

echo or return? [duplicate]

Functions can only return one value. Change all the echo statements in your tweet function to concatenate a string, then return the string at the end of the function.

Twitter knocks website out

Yes, Twitter does scan a tweeted URL. It needs to do that to determine if page contains Twitter Card markup. If I remember right trying to detect and block malicious links was also implied when they started to forcefully wrap all links in their own shortener. See URL Crawling & Caching for details on their … Read more

Twitter feed – Failed to open stream [closed]

How to do remote requests in WordPress: Use the appropriate API First, there’s the WP HTTP API, which should be used for such tasks. And second, one should never ever use the @ operator, as this one suppresses error messages or notices and will successfully lock you out from troubleshooting your bugs. Just because you … Read more

Displaying tweets problem with @username

Hi Rob@:try with this plugin Tweet This.you can set your custom image also.:) or Try this code… Open the sidebar.php Locate the “twitter-feed” div <div class=”twitter-feed”> <h2>What I’m up to…</h2> <ul id=”twitter_update_list”></ul> <script type=”text/javascript” src=”http://twitter.com/javascripts/blogger.js”></script> <script type=”text/javascript” src=”http://twitter.com/statuses/user_timeline/JunLoayza.json?callback=twitterCallback2&amp;count=1″></script> <div class=”follow-on-twitter”> <a rel=”nofollow” href=””>Follow me on Twitter</a> </div> </div> Replace with Twitter username <script type=”text/javascript” src=”http://twitter.com/statuses/user_timeline/AddYourUsernameHere.json?callback=twitterCallback2&amp;count=1″></script> … Read more