I want to put image title above the inserted image

There’s many ways to achive these. If you know php than you can do regular expression to find in text images and insert title before theme , but you need to write it somewhere to pull from like <img src=”https://wordpress.stackexchange.com/questions/173936/..” title=”My title” /> and then in php find , take title=”” and insert before image … Read more

Why is my WP site blocking my own IP?

Since this actually seems to be a server related issue, it would be better suited for stackoverflow.com, or a stack exchange that is dedicated to networking. But, I’ll do my best to help here. If the CURL is showing connection refused, the connection is getting blocked before it can even load WP. You could prove … Read more

How to troubleshoot WordPress issues? [duplicate]

There are a few things you can do: Use the Debug Bar plugin http://wordpress.org/extend/plugins/debug-bar/ Set WP_DEBUG to true in your wp-config.php file if you are looking for problems in a theme or plugin I created a plugin that allows you to dump any variable into the Debug Bar plugin: http://wordpress.org/extend/plugins/kint-debugger/ You should look at the … Read more