List/Grid Tag Archives: wordpress post
How to disable auto save, post revision and reduce the database size in wordpress
The auto save option in wordpress is a best feature but not for every. For those who have limited web space, limited database size and they not want to auto…
Find a content with post id in wordpress
The following example will show the content of post id 30 <?php $post_id = 30; $post = get_post($post_id); $title = $post->post_title; echo $title; echo $post->post_content; ?> You can customize this…






