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...
On top of that vital oils that have been adulterated can induce hazardous facet results, or at most effective supply only negligible therapeutic reward. Down below are tips that can assist you decide on a brand name of pure, higher good quality vital oils:...
I really want to get pregnant and I really want to know what I can take or what not to take when I am coming up to my ovulation date. I have worked it out that I should be ovulating around about the 20th Dec....
There are many strategies to detox for THC. In this article, I am likely to go over many popular strategies, as nicely as touch on what you can assume to get from the finest THC detox beverages on the current market. 1st off, you need to know...
Find Organic Well being Higher education systems in the United States and Canada. There is a large array of healing arts taught at a all-natural wellbeing university. Based on which industry of curiosity men and women have, one can enroll in a all-natural wellbeing university...
#Cardio #Autism #Backpain #Beauty #BuildMuscle The last time that you tore open a bag of something that you brought home from...
Dental Teeth Scaling In India Scaling What is scaling ? Dental health is an important part of your general health. Whatever your age, you can and should have healthy teeth. Correct dental care can help you keep your teeth healthy for a lifetime....
Several ladies want to have greater breasts, devoid of resorting to plastic surgeon's scalpel. Herbal solutions can be, in some circumstances, powerful. For all those who want greater breasts the natural way, can attempt one particular of the solutions below, but their achievement is dependent...
"Ignorantia Legis Non Excusat" is a Latin legal maxim which implies that ignorance to the regulation excuses no one particular from compliance therein. It is one particular of the standard references that criminal regulation has centered some of its scenarios and it is certainly ignorance...
Suffering from mid back agony can be terribly agonizing and frustrating. The lead to of mid back agony are as a variety of as the people who go through from this sort of agony and there are tens of millions of people who go through...
If you want to experience male to female breast enlargement you will undoubtedly find that there are numerous ways to achieve results. Whether it is through surgery or berast enlargement pills, there are plenty of ways to go about getting male to female breast enlargement....
So you are fatigued of shorter hair and want to develop long nutritious hair quick. Even if you are an more mature lady you can have more time hair that will glimpse wonderful. Do not believe me? Just glimpse at Michelle Pfeiffer, Madonna or Goldie...
According to Ayurveda, the historic Indian science of health and fitness and healing, the Kapha Dosha (humour) is principally accountable for extra fat and adipose tissue in the physique and thus reducing Kapaha is the key to a prosperous bodyweight decline program. Down below you...
#health, #style, #beauty Tinnitus can be felt by the ringing, buzzing, crackling or hissing sound you can hear in either one or both ears. The severity of the condition can differ from less irritating to very painful sensation. It may be precipitated...
The positive aspects of getting curcumin everyday, the active component of the spice turmeric, could be lots of or none, dependent on the health supplement. Many of the curcumin positive aspects have to do with the prevention of continual and life threatening conditions that are...
Most people have felt fatigued and unusually weak from time to time. We may possibly truly feel like we won't be able to concentrate and are falling asleep at the wheel driving dwelling. If that is the case, just attain for a quick decide me...
Back in the 1970's Dr. Robert Atkins released a new diet program plan, "the Reduced Card Food plan". It has been a quite popular diet program mainly because it is a great diet program to unfastened pounds rapidly. When you very first get on...
Migraines are a sort of neurological disease. The most frequent symptom of a migraine is a potent headache, and people today generally in reality refer to migraines as "migraine headaches". There are other indicators of migraines, nonetheless, such as gastrointestinal problems (problems digesting meals or...
Women of all ages have been employing organic skin care recipes for hundreds of yrs. Romans, for instance, would use milk and honey to retain their skin supple and soft. Women of all ages have always identified that honey is useful for the skin, in...
Are you suffering from ringing in the ears? Is it so bothersome that it is keeping you from supplying your all at do the job? If you sense this way then you have to have a solution. Ringing in the ears or tinnitus can be...
I typically get email messages from individuals who are anxious about the well being implications of this diet. Lots of glimpse at some of the before and after pictures on the internet site or choose a glimpse at Jillian Barberie in her bikini and wonder...
Are you ill of currently being labeled a lumberjack in the early morning? Is “sawing logs” all through the night triggering you grief? Well, if you’re like me and have a issue with loud night breathing, browse on for some guidelines to help you out....
If makeup and cosmetics is a part of your everyday routine, it is actually a wise idea to invest in good makeup brushes that do the job right. There are a lot of makeup brushes out there in the market, including synthetic and organic...
H2o tank cleaning has grow to be an vital assistance to be crafted in our nation. There is this kind of a necessity, of program, it will cause and causes. How we eat each and every available chlorinated water and sand in the transmission line...
INTRODUCTION Environmental education emerged in the nineteen sixties as the phrase for the educational proportions of the atmosphere movement which, at that time, was concerned about air and h2o top quality (air pollution), the expansion in world populace, continuing depletion of natural means and environmental...