Editor reviews are provided by professional editors who evaluate a blog based on the following criteria: Frequency of Updates, Relevance of Content, Site Design, and Writing Style.
Do you have a problem getting in to your word press blog?
Do you get this message -
“You do not have sufficient permissions to access this page”
because -
- you have changed the domain name of your blog?
- you have moved your blog from multi-blog...
If you want to display total number of users in your wordpress blog, just type this code anywhere in the template.
$users = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->users");
echo $users." registered users.";
Share and...
Do you get “An Unexpected HTTP Error occurred during the API request.” ?
There is a quick solution to resolve this. Edit the file …./wp-includes/http.php and search for this entry.
‘timeout’ => apply_filters( ‘http_request_timeout’, 5),
Increase...
To find which disk server has booted from :
# echo ‘boot_string/S’|adb /stand/vmunix /dev/mem
To check if you have any other boot disks:
# lvlnboot -v
Share and Enjoy:
Some times its becomes difficult from the visitors point of view how many post you have on your site for each of the categories.
If you want to add the custom drop down code which will display total number of posts next to it.
<form action=”/”...