<?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>PushON Ltd &#187; Wordpress</title>
	<atom:link href="http://www.pushon.co.uk/blog/web-development/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pushon.co.uk</link>
	<description>The Online Marketing People</description>
	<lastBuildDate>Thu, 23 May 2013 09:50:22 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>How to include stylesheets and javascript files in wordpress, the correct way! (now including Media Queries)</title>
		<link>http://www.pushon.co.uk/news/how-to-include-stylesheets-and-javascript-files-in-wordpress-the-correct-way/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-include-stylesheets-and-javascript-files-in-wordpress-the-correct-way</link>
		<comments>http://www.pushon.co.uk/news/how-to-include-stylesheets-and-javascript-files-in-wordpress-the-correct-way/#comments</comments>
		<pubDate>Tue, 28 Aug 2012 14:11:30 +0000</pubDate>
		<dc:creator>Tom Procter</dc:creator>
				<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pushon.co.uk/?p=10384</guid>
		<description><![CDATA[<p>To often I see themes that have the template css and javascripts as HTML includes in the header file. In fact, even twentyeleven does it this way (not that I like a single thing about twentyeleven, but it&#8217;s what a lot of people use as a starting point). Not only is this bad practice as... <a href="http://www.pushon.co.uk/news/how-to-include-stylesheets-and-javascript-files-in-wordpress-the-correct-way/" class="post-excerpt-continue">Continue reading</a></p><p>The post <a href="http://www.pushon.co.uk/news/how-to-include-stylesheets-and-javascript-files-in-wordpress-the-correct-way/">How to include stylesheets and javascript files in wordpress, the correct way! (now including Media Queries)</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-10385 alignleft" title="Huzzah" src="http://www.pushon.co.uk/wp-content/uploads/Huzzah.jpg" alt="" width="321" height="480" /></p>
<p>To often I see themes that have the template css and javascripts as HTML includes in the header file. In fact, even twentyeleven does it this way (not that I like a single thing about twentyeleven, but it&#8217;s what a lot of people use as a starting point).</p>
<p>Not only is this bad practice as WordPress has hooks that are there to be used, but these hooks work well, and there&#8217;s no reason not to use them. In fact, by using these, we can safely minify code, and avoid nasty conflicts (and we all know how annoying they can be!)</p>
<div class="horizontal_line"></div>
<p>Ok, here is the code that you need:</p>
<h2>functions.php &#8211; stylesheet hook</h2>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">function</span> setup_stylesheets<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
<span style="color: #666666; font-style: italic;">// Default theme stylesheet</span><br />
wp_register_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'theme_css'</span><span style="color: #339933;">,</span> get_template_directory_uri<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/style.css'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #666666; font-style: italic;">// Responsive Stylesheets</span><br />
wp_register_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wide'</span><span style="color: #339933;">,</span><br />
get_template_directory_uri<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/css/larger.css'</span><span style="color: #339933;">,</span><br />
<span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// dependencies</span><br />
<span style="color: #0000ff;">'1.0'</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// version</span><br />
<span style="color: #0000ff;">'screen and (min-width: 940px)'</span> <span style="color: #666666; font-style: italic;">// wide screens (bigger than 940px)</span><br />
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_register_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'narrow'</span><span style="color: #339933;">,</span><br />
get_template_directory_uri<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/css/narrow.css'</span><span style="color: #339933;">,</span><br />
<span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// dependencies</span><br />
<span style="color: #0000ff;">'1.0'</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// version</span><br />
<span style="color: #0000ff;">'screen and (max-width: 600px)'</span> <span style="color: #666666; font-style: italic;">// narrow screens (smaller than 600px)</span><br />
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_register_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'iphone4'</span><span style="color: #339933;">,</span><br />
get_template_directory_uri<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/css/iphone4.css'</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// url</span><br />
<span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// dependencies</span><br />
<span style="color: #0000ff;">'1.0'</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// version</span><br />
<span style="color: #0000ff;">'only screen and (-webkit-min-device-pixel-ratio: 2)'</span> <span style="color: #666666; font-style: italic;">// screen rule</span><br />
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_register_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'ipad-portrait'</span><span style="color: #339933;">,</span><br />
get_template_directory_uri<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/css/ipad-portrait.css'</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// url</span><br />
<span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// dependencies</span><br />
<span style="color: #0000ff;">'1.0'</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// version</span><br />
<span style="color: #0000ff;">'all and (orientation:portrait)'</span> <span style="color: #666666; font-style: italic;">// screen rule</span><br />
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_register_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'ipad-landscape'</span><span style="color: #339933;">,</span><br />
get_template_directory_uri<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/css/ipad-landscape.css'</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// url</span><br />
<span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// dependencies</span><br />
<span style="color: #0000ff;">'1.0'</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// version</span><br />
<span style="color: #0000ff;">'all and (orientation:landscape)'</span> <span style="color: #666666; font-style: italic;">// screen rule</span><br />
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #666666; font-style: italic;">// Load the defined Stylesheets</span><br />
wp_enqueue_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'theme_css'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_enqueue_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wide'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_enqueue_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'narrow'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_enqueue_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'iphone4'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_enqueue_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'ipad-portrait'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_enqueue_style<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'ipad-landscape'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<br />
add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wp_enqueue_scripts'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'setup_stylesheets'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<div class="clear"> &#8221;</div>
<p style="text-align: left;">This is all you need to do, the function can be named to whatever you want, but this name needs to be reflected in the <strong>add_action</strong> call</p>
<p style="text-align: left;"><strong>UPDATE: I&#8217;ve now included a full set of media query style sheets too, so all you have to do is create the empty files and style away. </strong></p>
<h2 style="text-align: left;">FUNCTIONS.PHP &#8211; JAVASCRIPT HOOK</h2>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">function</span> setup_scripts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
wp_deregister_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'jquery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_register_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'jquery'</span><span style="color: #339933;">,</span> get_template_directory_uri<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/js/jquery-latest.js'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
wp_enqueue_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'jquery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wp_enqueue_scripts'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'setup_scripts'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<div class="clear"> &#8221;</div>
<p>This very similar to the scripts, you&#8217;ll notice the subtle change to the enqueue function.</p>
<p>So&#8230; go forth, and include your scripts and styles the correct way! Banish old habits, and embrace this wonderful functionality!</p>
<p>&nbsp;</p>
<p>The post <a href="http://www.pushon.co.uk/news/how-to-include-stylesheets-and-javascript-files-in-wordpress-the-correct-way/">How to include stylesheets and javascript files in wordpress, the correct way! (now including Media Queries)</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pushon.co.uk/news/how-to-include-stylesheets-and-javascript-files-in-wordpress-the-correct-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook introduces new input portal for WordPress content</title>
		<link>http://www.pushon.co.uk/blog/web-development/wordpress/facebook-introduces-new-input-portal-for-wordpress-content/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=facebook-introduces-new-input-portal-for-wordpress-content</link>
		<comments>http://www.pushon.co.uk/blog/web-development/wordpress/facebook-introduces-new-input-portal-for-wordpress-content/#comments</comments>
		<pubDate>Mon, 18 Jun 2012 08:33:25 +0000</pubDate>
		<dc:creator>Robert Grey</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pushon.co.uk/?p=9624</guid>
		<description><![CDATA[<p>Popular social media site Facebook has created a new add-on function enabling writers of online WordPress blogs to have their articles automatically uploaded onto their corporate page or personal timeline profile. Although WordPress blogs often already appear on Facebook, the simplicity and effortlessness of the new upload link is expected to further encourage integration of... <a href="http://www.pushon.co.uk/blog/web-development/wordpress/facebook-introduces-new-input-portal-for-wordpress-content/" class="post-excerpt-continue">Continue reading</a></p><p>The post <a href="http://www.pushon.co.uk/blog/web-development/wordpress/facebook-introduces-new-input-portal-for-wordpress-content/">Facebook introduces new input portal for WordPress content</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>Popular social media site Facebook has created a new add-on function enabling writers of online WordPress blogs to have their articles automatically uploaded onto their corporate page or personal timeline profile.<span id="more-9624"></span></p>
<p>Although WordPress blogs often already appear on Facebook, the simplicity and effortlessness of the new upload link is expected to further encourage integration of two of the world’s most powerful communications platforms.</p>
<p>Whilst still operating in their WordPress account, users of the content management and publishing platform will also be able to use the Facebook link function to provide comments or tag their friends.</p>
<p>An additional new facility, employing Facebook algorithms, also generates for each reader a tailored list of recommended further reading when they visit a WordPress-enabled website.</p>
<p>Meanwhile, Facebook has also introduced a facility to help generate traffic to the uploaded blogs whereby search engine optimisation (SEO) techniques are deployed, drawing on comments entered in a newly expanded commenting area.</p>
<p>The enhanced integration between the two platforms, it is believed, could consequently lead to a rise in the number of WordPress blogs and articles featuring on the Facebook site; and, by the same token, could also see a potential rise in the number of new Facebook users, encouraged to join up in order to use the facility to widen the reach of their blogs.</p>
<p>Facebook claims that an estimated 17% of all internet content worldwide is created using the WordPress platform.</p>
<p>According to WordPress the new facility is just as compatible with uploads from mobile phones as it is with desktop devices.</p>
<p>The post <a href="http://www.pushon.co.uk/blog/web-development/wordpress/facebook-introduces-new-input-portal-for-wordpress-content/">Facebook introduces new input portal for WordPress content</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pushon.co.uk/blog/web-development/wordpress/facebook-introduces-new-input-portal-for-wordpress-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy fix for &quot;the right syntax to use near &#8216;Usage: mysqldump&quot;</title>
		<link>http://www.pushon.co.uk/blog/clever-stuff/easy-fix-for-the-right-syntax-to-use-near-usage-mysqldump/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=easy-fix-for-the-right-syntax-to-use-near-usage-mysqldump</link>
		<comments>http://www.pushon.co.uk/blog/clever-stuff/easy-fix-for-the-right-syntax-to-use-near-usage-mysqldump/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 11:06:28 +0000</pubDate>
		<dc:creator>James Sims</dc:creator>
				<category><![CDATA[Clever Stuff]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pushon.co.uk/?p=7290</guid>
		<description><![CDATA[<p>Recently when I was moving a database from one server to another I did the usual mysql dump from command line, then tried to import it on the new server, but what&#8217;s this? An error: ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to... <a href="http://www.pushon.co.uk/blog/clever-stuff/easy-fix-for-the-right-syntax-to-use-near-usage-mysqldump/" class="post-excerpt-continue">Continue reading</a></p><p>The post <a href="http://www.pushon.co.uk/blog/clever-stuff/easy-fix-for-the-right-syntax-to-use-near-usage-mysqldump/">Easy fix for &quot;the right syntax to use near &#8216;Usage: mysqldump&quot;</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>Recently when I was moving a database from one server to another I did the usual mysql dump from command line, then tried to import it on the new server, but what&#8217;s this? An error:</p>
<blockquote>
<p>ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;Usage: mysqldump [OPTIONS] database [tables] OR mysqldump [OPTIONS] &#8211;databa&#8217; at line 1</p>
</blockquote>
<p>To fix this, simply open the sql file in a text editor and <strong>remove the first four lines</strong>, namely:</p>
<blockquote>
<p>Usage: mysqldump [OPTIONS] database [tables]<br />
OR     mysqldump [OPTIONS] &#8211;databases [OPTIONS] DB1 [DB2 DB3...]<br />
OR     mysqldump [OPTIONS] &#8211;all-databases [OPTIONS]<br />
For more options, use mysqldump &#8211;help</p>
</blockquote>
<p>&nbsp;</p>
<p>Once these had been removed the database imported just fine. Happy days!</p>
<p>The post <a href="http://www.pushon.co.uk/blog/clever-stuff/easy-fix-for-the-right-syntax-to-use-near-usage-mysqldump/">Easy fix for &quot;the right syntax to use near &#8216;Usage: mysqldump&quot;</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pushon.co.uk/blog/clever-stuff/easy-fix-for-the-right-syntax-to-use-near-usage-mysqldump/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SEO Weekly Round-Up #13</title>
		<link>http://www.pushon.co.uk/blog/seo-weekly-round-up-13/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=seo-weekly-round-up-13</link>
		<comments>http://www.pushon.co.uk/blog/seo-weekly-round-up-13/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 10:52:35 +0000</pubDate>
		<dc:creator>Laura Swain</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Resources]]></category>
		<category><![CDATA[seo weekly]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pushon.co.uk/?p=6664</guid>
		<description><![CDATA[<p>Here, SEO news here.*  Search engine optimisation (etc..) reviews and comment from PushON. Does Google consider SEO to be spam? Matt Cutt’s breaks it down for us in his video: “SEO stands for Search engine optimisation and essentially just means trying to make sure your webpages are well represented within search engines”. And consider the... <a href="http://www.pushon.co.uk/blog/seo-weekly-round-up-13/" class="post-excerpt-continue">Continue reading</a></p><p>The post <a href="http://www.pushon.co.uk/blog/seo-weekly-round-up-13/">SEO Weekly Round-Up #13</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>Here, SEO news here.*  Search engine optimisation (etc..) reviews and comment from PushON.</p>
<h2>Does Google consider SEO to be spam?</h2>
<p>Matt Cutt’s breaks it down for us in his video:<br />
<em> “SEO stands for Search engine optimisation and essentially just means trying to make sure your webpages are well represented within search engines”.</em></p>
<p>And consider the honest to goodness SEO measures (as Cutts does here) taken by righteous and idealistic optimisers &#8211; such as:<br />
<strong>1.</strong> Making sure your pages are ‘crawlable’, or in other words, accessible to SEs.<br />
<strong>2.</strong> Including the right search terms.<br />
<strong>3.</strong> Improving usability through good design and internal linking structure.<br />
One Youtube commenter had this to say:</p>
<p><img class="aligncenter size-full wp-image-6673" title="google seo spam youtube comment" src="http://www.pushon.co.uk/wp-content/uploads/2011/11/google-seo-spam-youtube-comment.png" alt="" width="561" height="86" /></p>
<p>And Matt’s final thoughts&#8230;.<br />
“There are many, many valid ways in which people can make the world better with SEO”<br />
So the answer is no then. Cheers Matt.</p>
<p><strong>Source:</strong> <a title="http://www.youtube.com/watch?v=BS75vhGO-kk" href="http://www.youtube.com/watch?v=BS75vhGO-kk" target="_blank">http://www.youtube.com/watch?v=BS75vhGO-kk</a></p>
<h2>Google real-time analytics beta:</h2>
<p>A new addition to Google Analytics (beta) will allow you to see real-time traffic data for your site. These new metrics include number of users on your site right now, which pages they are reading and referrals. The behaviour of potential customers coming at you live. Knowledge like this could be put to good marketing use.</p>
<p><img class="size-full wp-image-6682 alignright" title="web_analytics" src="http://www.pushon.co.uk/wp-content/uploads/2011/11/web_analytics.jpg" alt="From http://pubsub.com" width="269" height="346" /><br />
<strong>Source:</strong> <a title="http://analytics.blogspot.com/2011/09/whats-happening-on-your-site-right-now.html" href="http://analytics.blogspot.com/2011/09/whats-happening-on-your-site-right-now.html" target="_blank">http://analytics.blogspot.com/2011/09/whats-happening-on-your-site-right-now.html</a></p>
<h2>Useful Takeaways from Day 1 of the SearchLove 2011 conference:</h2>
<p>Joost de Valk, Tom Critchlow and Rand Fishkin are just a handful of names from the list of <a title="SEO aristocracy" href="http://www.webbythoughts.com/seo-gurusthey-dared-be-different/" target="_blank">SEO aristocracy</a> who gave speeches at the conference.<img class="alignleft size-full wp-image-6684" title="Rand-Fishkin-SEO-Guru-237x300" src="http://www.pushon.co.uk/wp-content/uploads/2011/11/Rand-Fishkin-SEO-Guru-237x300.png" alt="My name is Rand Fishkin and I am a Guru" width="197" height="253" /></p>
<p>Here are some of the best bits:<br />
<strong></strong><a title="http://www.koozai.com/blog/events/135-takeaways-from-searchlove-day-1-searchlove/" href="http://www.koozai.com/blog/events/135-takeaways-from-searchlove-day-1-searchlove/" target="_blank">http://www.koozai.com/blog/events/135-takeaways-from-searchlove-day-1-searchlove/</a></p>
<h2>Adwords ceases to support Internet Explorer 6 and introduces ‘bid-per-call’:</h2>
<p>This is a notice to Google Adwords users who browse with IE6. Get yourself a new version by the end of the year.<br />
In addition – Adwords is rolling out a phone call bidding scheme for its users.<br />
<strong>Sources:</strong> <a title="http://adwords.blogspot.com/2011/10/retiring-support-for-internet-explorer_27.html" href="http://adwords.blogspot.com/2011/10/retiring-support-for-internet-explorer_27.html" target="_blank">http://adwords.blogspot.com/2011/10/retiring-support-for-internet-explorer_27.html</a> and<a title="http://adwords.blogspot.com/2011/10/introducing-bid-per-call-in-adwords.html" href="http://adwords.blogspot.com/2011/10/introducing-bid-per-call-in-adwords.html" target="_blank"> http://adwords.blogspot.com/2011/10/introducing-bid-per-call-in-adwords.html</a></p>
<h2>Broken link checker plugin for WordPress:</h2>
<p>This new WordPress plugin will check all of the content on your site for broken links, redirects and missing images. It will then notify you on your dashboard or by email.<br />
<strong>Site:</strong> <a title="http://wordpress.org/extend/plugins/broken-link-checker/" href="http://wordpress.org/extend/plugins/broken-link-checker/" target="_blank">http://wordpress.org/extend/plugins/broken-link-checker/</a></p>
<h2>Google Maps allows you to see inside a shop!</h2>
<p>Now, through the power Google, we can look inside a shop whilst exploring a Google map. The next generation of Street View. It just gets better and better.<br />
I managed to get this far inside the comic store –</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-6693" title="Inside the comic shop" src="http://www.pushon.co.uk/wp-content/uploads/2011/11/Inside-the-comic-shop.png" alt="" width="626" height="435" /></p>
<p>That shelf at the back looks a bit overloaded to me.</p>
<p style="text-align: left;"><strong>Site:</strong> <a title="http://maps.google.com/maps?ll=33.742568,-117.820365&amp;spn=0.004853,0.013561&amp;sll=33.742814,-117.816672&amp;layer=c&amp;cid=7704649002191693046&amp;panoid=qHPoNvOZOYBaFsE0vGCa5A&amp;cbp=13,127.37,,0,11.85&amp;gl=us&amp;hq=comic+book+store+orange+county&amp;t=h&amp;vpsrc=0&amp;cbll=33.742848,-117.816622&amp;z=17" href="http://maps.google.com/maps?ll=33.742568,-117.820365&amp;spn=0.004853,0.013561&amp;sll=33.742814,-117.816672&amp;layer=c&amp;cid=7704649002191693046&amp;panoid=qHPoNvOZOYBaFsE0vGCa5A&amp;cbp=13,127.37,,0,11.85&amp;gl=us&amp;hq=comic+book+store+orange+county&amp;t=h&amp;vpsrc=0&amp;cbll=33.742848,-117.816622&amp;z=17" target="_blank">http://maps.google.com/maps?ll=33.742568,-117.820365&amp;spn=0.004853,0.013561&amp;sll=33.742814,-117.816672&amp;layer=c&amp;cid=7704649002191693046&amp;panoid=qHPoNvOZOYBaFsE0vGCa5A&amp;cbp=13,127.37,,0,11.85&amp;gl=us&amp;hq=comic+book+store+orange+county&amp;t=h&amp;vpsrc=0&amp;cbll=33.742848,-117.816622&amp;z=17</a></p>
<h2>Insights into Google&#8217;s rating guidelines:</h2>
<p>Dr. (<a title="SEOmoz" href="http://www.seomoz.org/" target="_blank">SEOmoz</a>) Pete lays down a few snippets of the recently leaked Google guidelines document; for those of you who missed it.<br />
<strong>Source:</strong> <a title="http://www.seomoz.org/blog/16-insights-into-googles-rating-guidelines" href="http://www.seomoz.org/blog/16-insights-into-googles-rating-guidelines" target="_blank">http://www.seomoz.org/blog/16-insights-into-googles-rating-guidelines</a></p>
<h2>And finally&#8230;</h2>
<p>Many of you will have heard or seen ‘Take this Lollipop’. No more needs to be said – just go to the link here if you haven’t already and then check out this <a title="NY Times" href="http://bits.blogs.nytimes.com/2011/10/18/mysterious-site-creates-a-horror-movie-starring-you/" target="_blank">NY Times</a> review (in that order).<br />
<strong>Site:</strong><a title="http://www.takethislollipop.com/" href="http://www.takethislollipop.com/" target="_blank"> http://www.takethislollipop.com/</a></p>
<p><img class="alignleft size-full wp-image-6698" title="take-this-lollipop-606x392" src="http://www.pushon.co.uk/wp-content/uploads/2011/11/take-this-lollipop-606x392.jpg" alt="" width="424" height="274" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>* A reference to the film &#8211; &#8216;<a title="Withnail and I" href="http://en.wikipedia.org/wiki/Withnail_and_I" target="_blank">Withnail and I</a>&#8216;</p>
<p>The post <a href="http://www.pushon.co.uk/blog/seo-weekly-round-up-13/">SEO Weekly Round-Up #13</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pushon.co.uk/blog/seo-weekly-round-up-13/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>8 WordPress SEO Plugins</title>
		<link>http://www.pushon.co.uk/blog/web-development/wordpress/wordpress-seo-plugins/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-seo-plugins</link>
		<comments>http://www.pushon.co.uk/blog/web-development/wordpress/wordpress-seo-plugins/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 16:04:34 +0000</pubDate>
		<dc:creator>Kieron Hughes</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress seo]]></category>
		<category><![CDATA[WordPress SEO Plugins]]></category>

		<guid isPermaLink="false">http://blog.pushon.co.uk/?p=1578</guid>
		<description><![CDATA[<p>WordPress can be a great platform for developing search engine friendly websites, and with the help of some plugins it can be even better. Once WordPress is installed on your server, you should look to setup some foundations before making wholesale template or content alterations. Here we provide 10 WordPress SEO plugins that have been... <a href="http://www.pushon.co.uk/blog/web-development/wordpress/wordpress-seo-plugins/" class="post-excerpt-continue">Continue reading</a></p><p>The post <a href="http://www.pushon.co.uk/blog/web-development/wordpress/wordpress-seo-plugins/">8 WordPress SEO Plugins</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>WordPress can be a great platform for developing search engine friendly websites, and with the help of some plugins it can be even better. Once WordPress is installed on your server, you should look to setup some foundations before making wholesale template or content alterations. Here we provide 10 WordPress SEO plugins that have been tried and tested by our good selves.</p>
<p><span id="more-1578"></span></p>
<p><strong>1. <a href="http://wordpress.org/extend/plugins/wp-no-category-base/">WP No Category Base</a></strong></p>
<p>Remove the mandatory <strong>/category/</strong> section from category permalinks, resulting in more search engine friendly URLs.</p>
<p><strong>2. <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO Pack</a></strong></p>
<p>It&#8217;s surprising how many WordPress websites still don&#8217;t use this. Customise META and title tags for each page/post, advanced canonical URLs and more.</p>
<p><strong>3. <a href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a></strong></p>
<p>Although not an &#8220;SEO plugin&#8221; as such, this is the best contact form plugin for SEO. Easily add success pages (to monitor conversions) and create page-specific forms to improve the &#8216;call to actions&#8217; of a website.</p>
<p><strong>4. <a href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/">Yoast Analytics</a></strong></p>
<p>One of the many great plugins by <a href="http://yoast.com/">Yoast</a>. Easily install Google Analytics tracking on a WordPress website, with the added advantage of automatically tracking outbound links.</p>
<p><strong>5. <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Google XML Sitemaps</a></strong></p>
<p>An XML sitemap generator that will automatically notify the major search engines each time a new post or update is made in WordPress.</p>
<p><strong>6. <a href="http://wordpress.org/extend/plugins/html-sitemap/">HTML Page Sitemap</a></strong></p>
<p>Does what it says on the tin. Easily create a static sitemap that will help users navigate through your content.</p>
<p><strong>7. <a href="http://wordpress.org/extend/plugins/search-suggest/">Search Suggest</a></strong></p>
<p>Another Yoast plugin. Provide your users with related queries and spelling suggestions when they perform a suggest, encouraging them to stay on your site for longer.</p>
<p><strong>8. <a href="http://wordpress.org/extend/plugins/feedburner-plugin/">FD Feedburner Plugin</a></strong></p>
<p>Redirect the default WordPress RSS feed to a Feedburner account, without the need for any template alterations or hassle.</p>
<p>Got a favourite WordPress SEO plugin? Let us know in the comments.</p>
<p>The post <a href="http://www.pushon.co.uk/blog/web-development/wordpress/wordpress-seo-plugins/">8 WordPress SEO Plugins</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pushon.co.uk/blog/web-development/wordpress/wordpress-seo-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Your WordPress Security</title>
		<link>http://www.pushon.co.uk/blog/check-your-wordpress-security/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=check-your-wordpress-security</link>
		<comments>http://www.pushon.co.uk/blog/check-your-wordpress-security/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 19:40:29 +0000</pubDate>
		<dc:creator>Katrina Gallagher</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.pushon.co.uk/?p=782</guid>
		<description><![CDATA[<p>WordPress is fantastic, and it has been adopted by more and more people for use as not only their blog, but also their main website.  The features built in, plugins and free themes available make it very customisable, and it can function very well as a full content managed website. The down side is that... <a href="http://www.pushon.co.uk/blog/check-your-wordpress-security/" class="post-excerpt-continue">Continue reading</a></p><p>The post <a href="http://www.pushon.co.uk/blog/check-your-wordpress-security/">Check Your WordPress Security</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.pushon.co.uk/blog/check-your-wordpress-securitycheck-your-wordpress-security/"><img class="size-full wp-image-784 alignnone" title="dull-blog-security" src="http://www.pushon.co.uk/wp-content/uploads/2009/02/dull-website-security.jpg" alt="dull-blog-security" width="247" height="169" /></a></p>
<p>WordPress is fantastic, and it has been adopted by more and more people for use as not only their blog, but also their main website.  The features built in, plugins and free themes available make it very customisable, and it can function very well as a full content managed website.</p>
<p>The down side is that sneaky spammers have a blue print for the bank, and if they find a hole in security they can exploit this on any website with the same setup.</p>
<h2><strong>Website security is hugely dull, but a very necessary evil.</strong></h2>
<p>Here are some things you can do to reduce the chance your site will be compromised:</p>
<ul>
<li>Keep your WordPress install up to date &#8211; but leave it until full release is out rather than the beta release.</li>
<li>Use the <a title="Security Scanner" href="http://blogsecurity.net/wordpress/news-140707">Security Scanner plugin</a> to check you&#8217;ve not left any opportunities for hackers.</li>
<li>Use the <a title="Secure WordPress" href="http://wordpress.org/extend/plugins/secure-wordpress/">Secure WordPress plugin</a></li>
<li>Change your administrator username to something other than admin, and generate a secure password&#8230; not your dogs name.</li>
<li>Use .htaccess to limit access to wp-admin, wp-content, etc.</li>
<li><a title="Enhance your .htaccess file" href="http://blogsecurity.net/wordpress/article-210607">Enhance your .htaccess file</a> for extra security</li>
<li>Install <a title="wordpress login security plugin" href="http://www.bad-neighborhood.com/login-lockdown.html" target="_blank">Login LockDown</a></li>
<li><a title="Themes and plugins" href="http://blogsecurity.net/wordpress/3-tips-to-avoid-dangerous-themes-and-plugins">Be careful about which themes and plugins you install</a> &#8211; you may be installing a virus, hidden links, etc.</li>
</ul>
<p>To check whether you&#8217;re already a victim:</p>
<ul>
<li>Check what your site looks like with styles turned off, and with JavaScript turned off.  You may already have hidden spam links in your site.</li>
<li>Check your Web Analytics &#8211; has your site had a sudden drop in traffic, or have you received traffic from keyword searches unrelated to your website?  This could indicate a problem with your website, but it could also indicate that your tracking code has been pinched and used on someone else&#8217;s site.</li>
<li>Check your backlinks &#8211; if you have any suspicious links (unrelated, foreign, etc), this could be a warning sign&#8230; or it may be nothing to worry about.</li>
<li>Check your common files or template files don&#8217;t have any strange code that uses the eval() command, or base64_decode() &#8211; cross reference against the original WordPress files or your original theme file.</li>
<li>Look for &#8216;k1b0rg&#8217; or &#8216;keymachine.de&#8217; in your php scripts</li>
</ul>
<h3>How to fix your WordPress Security problem</h3>
<p>I&#8217;m no expert in WordPress development, so if anyone has anything to add/amend on this topic, please shout up! But here is one simple process to follow if you find you are a victim of a security exploit, and cant deal with festering around in the code to delete corrupted files:</p>
<ol>
<li>Take a backup of all your files</li>
<li>Take a backup of your database</li>
<li>Export your posts</li>
<li>Export your list of registered users</li>
<li>Make a note of the plugins you have installed</li>
<li>Make a note of your theme (and any mods you have made)</li>
<li>List all hyperlinks on your blog (use your sitemap)</li>
<li>Type a search in with your plugin name for each one you have installed, and see if there are comments about SQL injection, security holes, etc.  Take any of the plugins that look dangerous off your list for re-install.</li>
<li>Download all your safe plugins &amp; a fresh version of your theme (if you&#8217;ve used a template)</li>
<li>Change your passwords for FTP &amp; Database administration</li>
<li>Delete the WordPress files from your server</li>
<li>Drop the WordPress tables in your database related to this install (careful here particularly if you have other sites using the same database)</li>
<li>Download the latest full version of WordPress</li>
<li>Upload the files to your server &amp; run through a fresh install</li>
<li>Import your posts back in</li>
<li>Change your options in permalinks to reflect your old site structure (this maintains any link equity you may have built up &amp; reduces the chance of broken links to your site)</li>
<li>Install your safe plugins &amp; activate</li>
<li>Install your theme &amp; make your  modifications</li>
<li>Check your media (images, video, etc) is displaying correctly &#8211; you may need to upload images from your backup copy</li>
<li>Update your settings (blog title, All in one SEO title tags, etc)</li>
<li>Take all security measures listed in the list at the top of this blog post</li>
<li>Check nothing has broken in the process</li>
</ol>
<p>Further reading:</p>
<ul>
<li><a title="Geek Ramblings" href="http://dougal.gunters.org/blog/2007/10/30/securing-wordpress">Geek Ramblings</a></li>
<li><a title="Matt Cutts" href="http://www.mattcutts.com/blog/whitehat-seo-tips-for-bloggers/">Matt Cutts Presentation</a></li>
<li><a title="Secure Wordpres" href="http://www.simplehelp.net/2007/09/10/9-ways-to-secure-your-wordpress-blog/">9 Easy ways to secure WordPress</a></li>
<li><a title="Hijacked stats" href="http://www.woopra.com/blog/2009/01/15/have-your-stats-been-hijacked/">Have your stats been hijacked?</a></li>
<li><a title="Did your WordPress site get hacked" href="http://ocaoimh.ie/2008/06/08/did-your-wordpress-site-get-hacked/">Did your WordPress site get hacked?</a></li>
</ul>
<p>The post <a href="http://www.pushon.co.uk/blog/check-your-wordpress-security/">Check Your WordPress Security</a> appeared first on <a href="http://www.pushon.co.uk">PushON Ltd</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pushon.co.uk/blog/check-your-wordpress-security/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic
Object Caching 1331/1476 objects using disk: basic

Served from: www.pushon.co.uk @ 2013-05-23 13:47:31 -->