Tag Archive: wordpress

I like to do things manually on my blogs and use as little plugins i can. If i can use a plugin for two things it’s great. A good example is Auto feature Image plugin i am using for display on the front page of my blog, rss thumbnail and Facebook thumbnail (details here).

Here is how you can use your seo plugin, whatever it is, to set an og:descrption, for better looking posts on Facebook timeline. So, look for meta name=”description” in your plugin and add property="og:description" after it.

In Yoast SEO plugin it’s easy:

echo ‘<meta name="description" content="’.esc_attr( strip_tags( stripslashes( $metadesc ) ) ).’"/>’."\n";

echo ‘<meta name="description" property="og:description" content="’.esc_attr( strip_tags( stripslashes( $metadesc ) ) ).’"/>’."\n";

The result is this: my post has a short description, the other one does not.

Cheap and fake cache for your blog

Amongs Google PageSpeed ranking factors is one regarding a Content Delivery Network, that wants to use subdomains or a CDN for distributing content. IF you have basic DNS and HTML knowledge you can do these easy steps:

  1. add to your dns Aliases (A records) with the name cache1.yourdomain.com and cache2.yourdomain.com in order to point to the same place as www.yourdomain.com
  2. edit your theme header.php file and change the adresses of the css and js files to cache1.yourdomain.com. do this with the plugins also.
  3. go to your media options in wordpress and put full URL path to files to cache2.yourdomain.com, as seen below:

cache

This is all. This can be easily done using CDN rewrites after completing step one.

What I want from Live Writer

I really hope the great blogging tool Windows Live Writer will get better over time. Here’s my wish list, in case anybody from Microsoft is listening:

  1. fixing the jpg-png transformation bug
  2. an option for a cropped thumbnail.
  3. an option for choosing my own thumbnail name. wordpress has the -100×100.jpg naming system, wlw has _thumb.jpg system. so wlw is uploading two files instead of one.

It’s not much, but it will really help a lot of people.

Dear site owner or webmaster of http://zoso.ro/, Your site appears to be running an older version of WordPress. Google recommends that you update to the latest release. Older or unpatched software may be vulnerable to hacking or malware that can hurt your users. To download the latest release, visit the WordPress download page. If you have any additional questions about why you are receiving this message, Google has provided more background information in a blog post about this subject. Best wishes, Google Search Quality Team

This is what i got from Webmasters Tools. The thing is i do have the latest version of WordPress, but i removed that announcement from the header, in order to protect myself from attacks.

remove_action(‘wp_head’, ‘wp_generator’);

After upgrading to WordPress 3.1.3 i get this error when I post news articles via Windows Live Writer:

“Invalid Server Response – The response to the metaWeblog.newPost method received from the weblog server was invalid: Invalid response document returned from XmlRpc server.” .

Read More »