Category Archives: Wordpress (en)

Best gallery for WordPress

If you also wonder why most of the galleries for WordPress are so ugly, inconvenient and expensive, and you want to find the best free gallery for posting your photos, videos or portfolio in a minimalistic and convenient format with … Continue reading

Posted in Wordpress (en) | Leave a comment

[solution] WordPress: css template editing problem

Funny thing – when you edit wordpress templates ccs (and other CMS) in Google Chrome – often the cache glitches, and as a result, when you refresh the page changes are not visible. I did not understand what’s wrong until … Continue reading

Posted in CMS (en), Design (en), Wordpress (en) | Leave a comment

WordPress on IIS does not load/display images

The first bump I got from encountering the WordPress rake on IIS: a problem with displaying pictures. When you upload an image to the ‘media’ of WordPress, it doesn’t display and gives an error:   HTTP Error 500.50 – URL … Continue reading

Posted in Windows Server (en), Wordpress (en) | Leave a comment

Top 3 wordpress plugins

Let me tell you about my favorite top 3 plugins for WordPress that I dug up this year.   Broken Link Checker – allows you to find and fix broken links; no limit, the plugin is free. It searches for … Continue reading

Posted in CMS (en), Wordpress (en) | Leave a comment

Hide the author of WordPress posts

By default, stupid Worldpress puts the user’s login in the author URL of each post. To remove this: in the child theme, in the file functions.php:

Posted in Wordpress (en) | Leave a comment

WordPress xml-rpc: protection against bruteforce

Since WordPress 3.5, any installation has xml-rpc enabled by default, which is a very useful thing that allows you to use mobile apps to maintain your site, among other things.   However, the use of xml-rpc is a huge black … Continue reading

Posted in Apache (en), CMS (en), Wordpress (en) | Leave a comment

Choosing a web server for WordPress on Windows

There are situations when an Internet site must be hosted by Windows Server. This is a fairly rare case, but it happened to me recently (the first time in a dozen years of working with Web servers): I had to … Continue reading

Posted in Apache (en), Online Shops, Webmaster (en), Windows Server (en), Wordpress (en) | Leave a comment

How to add Google Adsense in WordPress child theme

To insert ads into a child theme on an Adsense site: add the following code to function.php: //////////////////////// ///Google AdSense: // add_action(‘wp_head’, ‘wpse_43672_wp_head’); function wpse_43672_wp_head(){ //Close PHP tags ?> <script data-ad-client=”ca-pub-<publisher-numberic-code>” async src=”https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js”></script> <?php //Open PHP tags } //////////////////////// Don’t … Continue reading

Posted in Wordpress (en) | Leave a comment