If you’re using google xml sitemap wordpress plugin(Google sitemap generator,google-xml-sitemaps-v3-for-qtranslate,..etc), you will notice an error message when you’re accessing your sitemap.This error message like this.
Tag: Wordpress
WordPress get child pages of the current page
How to get a list of child pages of the current page in the WordPress.Only you have to call to wordpress wp_list_pages core function to get child pages.No display errors and no need to write sql statements.
WordPress get specific page or post content
How can I get specific page or post content to any of pages in the WordPress.You don’t have a write sql codes.Simply call to WordPress core functions only.
WordPress disable posts/pages auto save and revision – full complete guide
When you editing your posts/pages in WordPress posts/pages are automatically saved by WordPress function.When you editing big post if your contents lose because some reason,so then this function is very useful.But in some situations, for a example you editing on…
WordPress get data from wp_post table
This mysql query help to get data from the wp_posts table of the wordpress.It will get any data from the wp_post table.Only you have to set the condition in the WHERE clause of this query.
WordPress get meta data from wp_options table
How to get data/meta data from the wp_options table in the wordpress .In this table, option_values are(some values) saved as serialized .So directly we can’t get those values.Now I’ll tell you easy method to get this value from wp_options table. I…