<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Internet Marketing Blog&#187; twitter</title>
	<atom:link href="https://modularinternetmarketing.com/tag/twitter/feed" rel="self" type="application/rss+xml" />
	<link>https://modularinternetmarketing.com</link>
	<description></description>
	<lastBuildDate>Wed, 08 Jul 2020 21:00:42 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.9.35</generator>
	<item>
		<title>How to Add Twitter&#8217;s Official Tweet Button in WordPress using TinyUrl</title>
		<link>https://modularinternetmarketing.com/614/how-to-add-twitters-official-tweet-button-in-wordpress-using-a-tinyurl</link>
		<comments>https://modularinternetmarketing.com/614/how-to-add-twitters-official-tweet-button-in-wordpress-using-a-tinyurl#comments</comments>
		<pubDate>Thu, 17 Mar 2011 16:38:19 +0000</pubDate>
		<dc:creator><![CDATA[Sara]]></dc:creator>
				<category><![CDATA[SEO and SEM Tips]]></category>
		<category><![CDATA[tweet button]]></category>
		<category><![CDATA[tweet button using tinyurl]]></category>
		<category><![CDATA[tweet button wordpress]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter button]]></category>
		<category><![CDATA[twitter button on wordpress]]></category>

		<guid isPermaLink="false">http://modularinternetmarketing.com/?p=614</guid>
		<description><![CDATA[It&#8217;s very simple to just add the official tweet button to your site, but if you have very long Search engine friendly URLs (see any post URL on this site) it can be a bit difficult! To implement the tweet button with a short URL I used tinyurl, as unlike bit.ly you don&#8217;t need to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s very simple to just add the official tweet button to your site, but if you have very long Search engine friendly URLs (see any post URL on this site) it can be a bit difficult!</p>
<p>To implement the tweet button with a short URL I used tinyurl, as unlike bit.ly you don&#8217;t need to create an account and the only data it sends back to you is the shortened URL.</p>
<p>The code should be implemented within the loop, you can even include it if you want to keep file sizes low.</p>
<pre><span style="font-family: monospace;">//the url you want to make tiny
$maketiny = 'http://tinyurl.com/api-create.php?url='.get_permalink();

/*Initialise and set options for cURL
(this lets you transfer data between URLs)*/
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $maketiny);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);

//execute and close cURL
$data = curl_exec($ch);
curl_close($ch);

//You now have the tinyurl stored in $tinyurl
$tinyurl = $data;</span></pre>
<p>Now that you have the tinyurl stored in the $tinyurl variable, you can use it in the twitter button!</p>
<p>You have two choices about how to code the button, either use JavaScript or an iFrame.</p>
<p>For JavaScript you need the following code:</p>
<pre><span style="font-family: monospace;">&lt;script src="http://platform.twitter.com/widgets.js"
type="text/javascript"&gt;&lt;/script&gt;
&lt;div&gt;
   &lt;a href="http://twitter.com/share" class="twitter-share-button"
      data-url="&lt;?php echo $tinyurl; ?&gt;"
      data-count="&lt;?php the_permalink(); ?&gt;"&gt;Tweet&lt;/a&gt;
&lt;/div&gt;</span></pre>
<p>For an iFrame you need this code:</p>
<pre><span style="font-family: monospace;">&lt;iframe allowtransparency="true" frameborder="0" scrolling="no"
src="http://platform.twitter.com/widgets/tweet_button.html?
url=&lt;?php echo $tinyurl; ?&gt;&amp;amp;counturl=&lt;?php the_permalink(); ?&gt;"
style="width:130px; height:50px;"&gt;&lt;/iframe&gt;</span></pre>
<p>The following attributes and query strings can be used:</p>
<table border="1" width="475">
<tbody>
<tr>
<th>Query String</th>
<th>Attribute</th>
<th>Description</th>
<th>Default</th>
</tr>
<tr>
<td>url</td>
<td>data-url</td>
<td>URL of the page to share</td>
<td>HTTP Referrer</td>
</tr>
<tr>
<td>via</td>
<td>data-via</td>
<td>Screen name of the user to attribute the Tweet to</td>
<td>none</td>
</tr>
<tr>
<td>text</td>
<td>data-text</td>
<td>Default Tweet text</td>
<td>Content of the &lt;title&gt; tag</td>
</tr>
<tr>
<td>related</td>
<td>data-related</td>
<td>Related accounts</td>
<td>None</td>
</tr>
<tr>
<td>count</td>
<td>data-count</td>
<td>Count box position (can be horizontal, vertical or none)</td>
<td>horizontal</td>
</tr>
<tr>
<td>lang</td>
<td>data-lang</td>
<td>The language for the Tweet Button</td>
<td>en</td>
</tr>
<tr>
<td>counturl</td>
<td>data-counturl</td>
<td>The URL to which your shared URL resolves to (only needs to be used if a short url is used in for the other url)</td>
<td>the url being shared</td>
</tr>
</tbody>
</table>
<p>For more information on the tweet button see the <a href="http://dev.twitter.com/pages/tweet_button" target="_blank">Official Twitter Tweet Button Page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://modularinternetmarketing.com/614/how-to-add-twitters-official-tweet-button-in-wordpress-using-a-tinyurl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Much Would you Pay to Own Twitter?</title>
		<link>https://modularinternetmarketing.com/553/how-much-would-you-pay-to-own-twitter</link>
		<comments>https://modularinternetmarketing.com/553/how-much-would-you-pay-to-own-twitter#comments</comments>
		<pubDate>Fri, 11 Feb 2011 10:36:14 +0000</pubDate>
		<dc:creator><![CDATA[Sara]]></dc:creator>
				<category><![CDATA[Online Marketing News]]></category>
		<category><![CDATA[buy twitter]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook buy twitter]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google buy twitter]]></category>
		<category><![CDATA[sell twitter]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter news]]></category>

		<guid isPermaLink="false">http://modularinternetmarketing.com/?p=553</guid>
		<description><![CDATA[There has been speculation of Twitter buy out talks with Google and Facebook. Figures as high as $10 Billion (£6.23 bn) have been said to come up. Considering that in December the microblogging site was valued at just $3.7 Billion after reporting some $200 million in profits, are they offering too much? However they have just set two phenomenal [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>There has been speculation of Twitter buy out talks with Google and Facebook. Figures as high as $10 Billion (£6.23 bn) have been said to come up.</p>
<p>Considering that in December the microblogging site was valued at just $3.7 Billion after reporting some $200 million in profits, are they offering too much?</p>
<p>However they have just set two phenomenal records for the most Tweets per second. In Japan an astounding  6,939 tweets was recorded just after midnight and the most Tweets during a sporting event was set during the last minutes of the Super Bowl this year at 4,064.</p>
<p>Assuming the site still has a few more years left until it becomes as redundant and slow as MySpace there is still time for it to expand. However if I were in charge I&#8217;d take the $10 bn! Social Network fads don&#8217;t last too long!</p>
]]></content:encoded>
			<wfw:commentRss>https://modularinternetmarketing.com/553/how-much-would-you-pay-to-own-twitter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Police Restricted To 140 Characters</title>
		<link>https://modularinternetmarketing.com/463/police-restricted-to-140-characters</link>
		<comments>https://modularinternetmarketing.com/463/police-restricted-to-140-characters#comments</comments>
		<pubDate>Thu, 14 Oct 2010 16:12:07 +0000</pubDate>
		<dc:creator><![CDATA[Sara]]></dc:creator>
				<category><![CDATA[Other SEO and SEM articles]]></category>
		<category><![CDATA[#gmp24]]></category>
		<category><![CDATA[GMP]]></category>
		<category><![CDATA[GMP on twitter]]></category>
		<category><![CDATA[GMP twitter]]></category>
		<category><![CDATA[greater manchester police on twitter]]></category>
		<category><![CDATA[greater manchester police twitter]]></category>
		<category><![CDATA[police]]></category>
		<category><![CDATA[police on twitter]]></category>
		<category><![CDATA[police twitter]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter police]]></category>
		<category><![CDATA[twitter police prank]]></category>

		<guid isPermaLink="false">http://modularinternetmarketing.com/?p=463</guid>
		<description><![CDATA[If you were to log onto twitter on Thursday 14th of October you might be surprised to find that one of the trending topics is #gmp24, you might be wondering just what this means. In an attempt to show the greater public just how tough it is to be a cop Greater Manchester Police have been Tweeting every 999 [&#8230;]]]></description>
				<content:encoded><![CDATA[<div>
<p>If you were to log onto twitter on Thursday 14th of October you might be surprised to find that one of the trending topics is #gmp24, you might be wondering just what this means.</p>
<p>In an attempt to show the greater public just how tough it is to be a cop Greater Manchester Police have been Tweeting every 999 call they receive in the space of 24 hours.</p>
<p>So far they have made over 1200 tweets since 5:30AM and had three of their accounts temporarily suspended due to &#8216;spamming&#8217; the micro-blogging site.</p>
<p>However this has not been without any controversy. Fake accounts were made by pranksters which featured tweets such as;</p>
<blockquote><p><strong>Call 025 &#8211; Reported burglary by man with lettuce on his head.#gmp24</strong></p></blockquote>
<blockquote><p><strong>Call 36 Police officer down. Police officer down. Ambulance with box of donuts required stat </strong><strong>#gmp24</strong></p></blockquote>
<p>GMP responded quickly threatening the pranksters to remove the official GMP logo.</p>
<p>Although some of the official tweets were just as humorous;</p>
<blockquote><p><strong>Call 384 report of man holding baby over bridge &#8211; police immediately attended and it was man carrying dog that doesn&#8217;t like bridges #gmp24</strong></p></blockquote>
<p>While the whole thing may seem trivial to some Chief constable Peter Fahy claims the point is to let the general public as well as the politicians see what police have to deal with every day, and possibly re-consider budget cuts that have been proposed in the Government&#8217;s upcoming spending review.</p></div>
]]></content:encoded>
			<wfw:commentRss>https://modularinternetmarketing.com/463/police-restricted-to-140-characters/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Algorithm and Impact on WWW size</title>
		<link>https://modularinternetmarketing.com/274/google-algorithm-and-impact-on-www-size</link>
		<comments>https://modularinternetmarketing.com/274/google-algorithm-and-impact-on-www-size#comments</comments>
		<pubDate>Wed, 14 Oct 2009 20:02:44 +0000</pubDate>
		<dc:creator><![CDATA[Web Marketing]]></dc:creator>
				<category><![CDATA[Online Marketing News]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://modularinternetmarketing.com/?p=274</guid>
		<description><![CDATA[Since Google&#8217;s policy (and Google Algorithm) has drastically changed last year regarding paid links WWW had another great reason to grow in volume (Of course Google’s decision is just another reason for having another social media account). Everyone seems to have twitter accounts, links on blogs and works hard on all kinds of forums to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Since Google&#8217;s policy (and Google Algorithm) has drastically changed last year regarding paid links WWW had another great reason to grow in volume (Of course Google’s decision is just another reason for having another social media account). Everyone seems to have twitter accounts, links on blogs and works hard on all kinds of forums to get the link in either form out there.<br />
I tried to get a sensible clue out of this and finally I thought about Google Algorithm.<br />
Google Algorithm is not longer brilliant because of its relevancy. Google Algorithm is great because this is a very powerful business engine behind one of the biggest companies in the world. Google&#8217;s Algorithm task is to deliver results not to us but to Google&#8217;s boardroom and not in the form of horribly looking text links which they recently try to make it more attractive but in the form of<br />
money,<br />
more money<br />
and more money.</p>
<p>My lovely cheeky Google Giant makes money out of AdWords platform which is working well only because of Google brilliant algorithm.<br />
AdWords need more users and publishers to make money so the key success will be to adjust Algorithm always the way that it will produce more users and publishers and will help to get rid of competition buy simply telling everyone – You know AdWords is the only way to go if you want online presence (very clever).</p>
<p>- Among other stuff Google owns: Blogger, Orkut etc &#8211; These services are unlikely to bring money back unless they have AdSense publishers and/or traffic<br />
- New Content = New Pages &#8211; paid linking doesn’t usually bring new www. Link publisher gets all the money with no contribution to Google he is very unlikely to introduce AdSense online.<br />
- This is simple the more pages is out there the bigger job search engines have and the bigger money are going to their pockets (they all know that not only Google)</p>
<p>I like everything what makes web growing &#8211; so lets make it even bigger &#8211; I just did my bit &#8211; did you?</p>
]]></content:encoded>
			<wfw:commentRss>https://modularinternetmarketing.com/274/google-algorithm-and-impact-on-www-size/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
