Zulvera Herbal Hair Loss Shampoo
#Supplement #WeightLoss #Weight #Yoga Zulvera hair loss shampoo has been getting a quite a lot of at...
/* Plugin Name: Duplicate Posts Remover Plugin URI: http://www.optimum7.com/?utm_source=DuplicatePostPlugin Description: This plugin eliminates the selected-duplicated posts and pages from your blog. Version: 3.2.0 Author: Optimum7 Author URI: http://www.optimum7.com/?utm_source=DuplicatePostPlugin Copyright 2011 Optimum7 Inc (email : optimum7@optimum7.com) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ define('OPT7_PDD_PLUGINPATH', (DIRECTORY_SEPARATOR != '/') ? str_replace(DIRECTORY_SEPARATOR, '/', dirname(__FILE__)) : dirname(__FILE__)); define('OPT7_PDD_PLUGINNAME', 'Duplicate Posts Remover'); define('OPT7_PDD_UTM_SOURCE_CODE', 'DuplicatePostPlugin'); define('OPT7_PDD_PLUGINSUPPORT_PATH', 'http://www.optimum7.com/internet-marketing/content/duplicate-content-googles-penalty-and-a-wordpress-solution.html?utm_source='.OPT7_PDD_UTM_SOURCE_CODE); define('OPT7_PDD_RSS_LINKS',10); define('OPT7_PDD_RSS_URL','http://www.optimum7.com/internet-marketing/feed'); _opt7_duplicate_posts_remover::bootstrap(); /********************************************************************************************************************/ class _opt7_duplicate_posts_remover{ function bootstrap(){ $file = OPT7_PDD_PLUGINPATH . '/' . basename(__FILE__); add_action('admin_menu', array('_opt7_duplicate_posts_remover','add_admin_options')); add_action( 'admin_enqueue_scripts', array('_opt7_duplicate_posts_remover','my_admin_enqueue_scripts')); add_action('wp_ajax_counters_action',array('_opt7_duplicate_posts_remover','setCounters_action_callback')); add_action('wp_ajax_my_action',array('_opt7_duplicate_posts_remover','getData_action_callback')); add_action('wp_ajax_filters_action',array('_opt7_duplicate_posts_remover','getFilters_action_callback')); add_action('wp_ajax_trashfilters_action',array('_opt7_duplicate_posts_remover','getTrashFilters_action_callback')); add_action('wp_ajax_deletePost_action',array('_opt7_duplicate_posts_remover','deletePost_action_callback')); add_action('wp_ajax_restorePost_action',array('_opt7_duplicate_posts_remover','restorePost_action_callback')); } function add_admin_options(){ add_menu_page ('_opt7_duplicate_posts_remover', 'Duplicate Posts', 8, '_opt7_duplicate_posts_remover', array('_opt7_duplicate_posts_remover','_opt7_duplicate_posts_remover_menu'), get_bloginfo('siteurl').'/wp-content/plugins/duplicate-posts-remover/images/icon.gif'); } function _opt7_duplicate_posts_remover_menu(){ require(OPT7_PDD_PLUGINPATH . '/admin/opt7-duplicate-posts-remover-settings.php'); } function my_admin_enqueue_scripts() { if ($_GET['page']=="_opt7_duplicate_posts_remover") wp_enqueue_script('pluginscript', plugins_url('/js/duplicate-post-remover.js', __FILE__), array('jquery')); } //Ajax Calls function setCounters_action_callback() { $limit = 10000; global $wpdb; $args = array('numberposts' => $limit,'post_type' => 'post','post_status' => 'publish'); $all_posts = sizeof(get_posts($args)); $args = array('numberposts' => $limit,'post_type' => 'post','post_status' => 'trash'); $posts_trash = sizeof(get_posts($args)); $args = array('numberposts' => $limit,'post_type' => 'page','post_status' => 'publish'); $all_pages = sizeof(get_posts($args)); $args = array('numberposts' => $limit,'post_type' => 'page','post_status' => 'trash'); $pages_trash = sizeof(get_posts($args)); $query = "SELECT wp_posts.* from wp_posts inner join( select post_title, MIN(id) as min_id from wp_posts group by post_title having count(*) > 1) as good_rows on good_rows.post_title = wp_posts.post_title and good_rows.min_id <> wp_posts.id where 1=1 and wp_posts.post_type ='post' and wp_posts.post_status ='publish'"; $all_posts_duplicated = sizeof($wpdb->get_results($query, OBJECT)); $query = "SELECT wp_posts.* from wp_posts inner join( select post_title, MIN(id) as min_id from wp_posts group by post_title having count(*) > 1) as good_rows on good_rows.post_title = wp_posts.post_title and good_rows.min_id <> wp_posts.id where 1=1 and wp_posts.post_type ='page' and wp_posts.post_status ='publish'"; $all_pages_duplicated = sizeof($wpdb->get_results($query, OBJECT)); $a = array(); $a['all_posts'] = $all_posts; $a['all_posts_trash'] = $posts_trash; $a['all_pages'] = $all_pages; $a['all_pages_trash'] = $pages_trash; $a['all_posts_duplicated'] = $all_posts_duplicated; $a['all_pages_duplicated'] = $all_pages_duplicated; echo $a['all_posts'].','.$a['all_posts_trash'].','.$a['all_pages'].','.$a['all_pages_trash'].','.$a['all_posts_duplicated'].','.$a['all_pages_duplicated'].','; } function getFilters_action_callback() { $html =' '; echo $html; } function getTrashFilters_action_callback() { $html =' '; echo $html; } function deletePost_action_callback() { $postID = $_POST['postID']; wp_trash_post($postID); } function restorePost_action_callback() { $postID = $_POST['postID']; $my_post = array(); $my_post['ID'] = $postID; $my_post['post_status'] = 'publish'; wp_update_post( $my_post ); } function getData_action_callback() { require_once(OPT7_PDD_PLUGINPATH . '/classes/opt7-duplicate-posts-remover-pagination.class.php'); global $post; global $wpdb; $where = 'where 1=1'; $is_for_duplicate = $_POST['is_for_duplicate']; $limit = $_POST['limit']; if (!$limit) $limit=25; $curr_page = $_POST['page']; if (!$curr_page) $curr_page=1; $post_search = $_POST['post_search']; if ($post_search) $where .=" and $wpdb->posts.post_title like '%".$post_search."%'"; $post_type = $_POST['post_type']; if (!$post_type) $post_type='post'; if ($post_type) $where .=" and $wpdb->posts.post_type ='".$post_type."'"; $post_status = $_POST['post_status']; if (!$post_status) $post_status='publish'; if ($post_status) $where .=" and $wpdb->posts.post_status ='".$post_status."'"; if ($is_for_duplicate){ $query = "SELECT $wpdb->posts.* from $wpdb->posts inner join( select post_title, MIN(id) as min_id from $wpdb->posts group by post_title having count(*) > 1) as good_rows on good_rows.post_title = $wpdb->posts.post_title and good_rows.min_id <> $wpdb->posts.id ".$where; } else{ $query ="SELECT $wpdb->posts.* FROM $wpdb->posts ".$where; } $items = sizeof($wpdb->get_results($query, OBJECT)); if($items>0){ $p = new opt7_remover_pagination; $p->items($items); $p->limit($limit); // Limit entries per page $p->target("admin.php?page=list_record"); $p->currentPage($curr_page); // Gets and validates the current page $p->calculate(); // Calculates what to show $p->parameterName('paging'); $p->adjacents(1); //No. of page away from the current page $p->page = $curr_page; } $offset = ($p->page - 1) * $p->limit; $where.=" ORDER BY post_modified DESC LIMIT ".$offset.','.$limit; if ($is_for_duplicate){ $query = "SELECT $wpdb->posts.* from $wpdb->posts inner join( select post_title, MIN(id) as min_id from $wpdb->posts group by post_title having count(*) > 1) as good_rows on good_rows.post_title = $wpdb->posts.post_title and good_rows.min_id <> $wpdb->posts.id ".$where; } else{ $query ="SELECT $wpdb->posts.* FROM $wpdb->posts ".$where; } $items = $wpdb->get_results($query, OBJECT); $html = '
Title | Author | Created | Modified | Status | Type | ![]() |
|
---|---|---|---|---|---|---|---|
".$post->post_title." | ".$user_info->user_firstname." " .$user_info->user_lastname." | ".date('m/d/Y', strtotime($post->post_date))." | ".date('m/d/Y', strtotime($post->post_modified))." | ".$post->post_status." |
".$post->post_type." | ".$post->comment_count." |
#Supplement #WeightLoss #Weight #Yoga Zulvera hair loss shampoo has been getting a quite a lot of at...
#AcidReflux #Haemorrhoids # #Men’sIssues #Migraine Capturing the heart of a Gemini may be quite hard...
Getting acne breakouts ideas that operate perfectly for you could be a laborous and very tough metho...
There are a ton of great acne skin care tips on the online. If you are acquiring challenges with...
Zits is a skin affliction that most adolescents and even a number of older people have to contend with. It is induced when someone has dreadfully oily skin or when our hormones are altering and maximizing the generation of oils in our skin. For most...
Tinnitus is a condition that causes a slight ringing in the ears. It is something that most sufferers just can’t stand. But what most do not realize is that there are things they can do at home that will help. All you will need...
Men and women who do not have the knowledge or experiences of drug or alcoholic beverages abuse, understanding the elements of drug or alcoholic beverages addiction are extremely challenging. Drug or alcoholic beverages abuse improvements the person's human system and intellect. The disorder of addiction...
#Supplement #WeightLoss #Weight #Yoga Allergy is an abnormal, acquired sensitivity to a given substance, including pollen, drugs, or numerous environmental triggers. People who have allergies often are sensitive to more than one thing....
Both the youthful and aged folks snore. Snoring is annoying and most of the time you will locate that it can be prevented with a end loud night breathing dwelling cure which can treatment the most common complications affiliated with loud night breathing. Right here...
House exercising is the new phenomenon in physical fitness, and the explosive advancement of residence exercising equipment is enough proof. It really is quick to see why several persons would be fascinated in residence exercising routines. You can get good results exercising at residence, as...
Indications of Migraine Headaches What are you to do when a unpleasant migraine will come on all of a sudden and you are searching for a dwelling migraine treatment that offers instant aid? A lot of of us get aspirin or ibuprofen, but this cure...
Fat get in being pregnant is healthier and pure, but many girls crave to return to their pre-being pregnant bodies. But you require to exercising warning when dropping your little one weight. Just as it is ideal to put on weight slowly and steadily for...
Ducks are most resistant to diseases than chicken and other fowls. Losses from various causes can be minimized through proper management, adequate appropriate feeding and housing, strict sanitary practices, and effective prevention medication and vaccination program. However, even with all precautionary measures, substantial losses are...
If you have been searching for a treadmill to invest in for any duration of time, then you know a excellent one particular is not low-cost. That usually means you need to have to just take your time and make a excellent decision. Listed here...
If you’re interested in how to get healthy pores and skin, you’re in the right area. When you’re carried out reading through this write-up you’ll know just what to do. The concern “how to get healthy pores and skin and search younger” has been about...
Utilizing important oils each and every solitary working day may well make your everyday lifetime better. It could make you calmer, happier, more healthy...
Click on Right here Now to Look at Your Absolutely free Online video Guide from The Each individual Other Working day Diet plan & Find Calorie Shifting, a Special Method That Makes use of High Calorie Junk Food to Trick Your Overall body Into Burning...
---> Fundamental Hypnosis Certification Review (latest edition) The ability of hypnosis is incredible. If you believe that with the intention of the major brings about of the greatest aspect of our diseases, take spot it psychological or else corporeal, are rooted deep surrounded by our minds,...
Each individual Lady longs for a Vivid, Spotless Skintone. Skin Well being challenges are most bothered by women of all ages of all ages. A luminescent pores and skin is the desire of all women of all ages on this Earth. Right now, we'll let...
"A very good therapeutic massage therapist is like a 4 leaf clover, difficult to discover and blessed to have"We at instances are so fast paced in our operate regimen, making an attempt to cope with the expenses and everyday charges that we do not comprehend...
Your system builds muscle in a natural way in response to intense activity. But if your each day regimen doesn't contain difficult your muscle tissue to develop, how do you induce the muscle-building procedure? It doesn't take place right away (as any bodybuilder can notify...
Some thoughts take a tiny having employed to. Even so, countless spa goers will need no persuasion when it will come to being nibbled by little fish at designer spas and spa resorts in international locations these as China, Japan, South Korea and Turkey. This...
For many years, people today have only linked menopause to females. Nevertheless, experiments have found that males practical experience a identical affliction. Folks frequently refer to this as a mid-lifestyle crisis. Male menopause has been found to have identical indicators that females practical experience. Male...
Enamel whitening does not have to be highly-priced. There are a whole lot of tooth whitening solutions out there that cost lesser than typical toothpaste by working with typical house products like oranges and baking soda. And with the consistent mounting of the prices commodities,...
It was back again when I was finding out for my Bachelor of Science honors degree in IT & Computing that I began to see the similarities among a pc and the unconscious intellect. A pc will only function corectly if it is functioning a perfectly...
Do you want to choose right care of your teeth?In this posting you will find out some suggestions which will assistance you in taking right care of your teeth. * Right after each individual food you should really thoroughly clean you teeth with a...
The Illuminati is a name that currently is utilised to speak of several teams characterised by secrecy, all teams performing collectively, having a person single purpose, since of having one and the similar god. Historically nevertheless, it refers particularly to the Bavarian Illuminati, founded on...
This short article is heading to clarify how celeb stars constantly appear to be to glimpse in excellent shape, and expose some of their techniques to looking wonderful. Have not you noticed that whenever you observe Tv set or go to the cinema how...