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...
squander your time exploring for methods how to unblock blocked ears all above the internet any for a longer time. The techniques how to unblock blocked ear explained on the internet as free of charge ideas from normal public and the methods explained in the...
This team of reducing 4 poor cholesterol suggestions could be just the lacking website link in your quest to send out cholesterol concentrations spiraling downwards more quickly than a recently unclogged sink. But retain in mind that implementing osmosis to reducing poor cholesterol suggestions will...
Heart condition is a national killer. It is the major trigger of death for both of those adult males and girls in the United States. In 2002, virtually seven hundred,000 folks died of heart condition in the U.S., which was 29% of all fatalities in...
Wanting for a Resveratrol from grape supplement? Here is my guidance. Select your supplements diligently. Assess top quality and cost as perfectly as the sort of the nutrient that is provided in the products. The liquid supplements are not the ideal choice. Researchers have proven that...
We all really like to go on visits which would unquestionably aid us to unwind. But just envision if we had the prospect of receiving to take pleasure in our food also the vacation would without a doubt be unforgettable and rejuvenating. If you want...
Finding posts and content can be annoying and stress provoking, especially if you have other things to do with your time. Have a system to enable you finesse' this chore can enable. I have been there! Here's the ticket: Finding worker e-newsletter strategies and worker...
Professional medical travelers trying to find high course, skilled and affordable surgical treatments and therapies for their needs glimpse for doctors and surgeons who offer you the ideal in contemporary and high-tech tools, instruction, and expertise. Renowned beauty surgeon Dr. Toncic and his team offer...
Our setting desires additional than what we are now accomplishing to increase it up among the pit that it is in right now. We have to have to be equipped to do additional than our existing attempts. We all can support a person an additional,...
Every person at some situations in their life ordeals digestion difficulties. Your overall body has all-natural warning signs to let you know that you should give better consideration to what you are placing in your mouth. If you eat too considerably of the improper things...
Working with eczema can just take up most of your day. In simple fact, treating eczema can take in most of your existence. If you undergo from eczema, you can relate to this. It involves constant monitoring and upkeep, as any 1 detail could cause...
We have all seen different muscle and fitness magazines and bodybuilders that have an ideal body and frankly, by looking at them, we want to build muscle fast. I have always been a fan of ways to build muscle fast, as I can't see...
Transferring to Delhi can be baffling for numerous, particularly in the course of the first number of days. There are so numerous cars, extreme site visitors, individuals transferring at the speed of light and all the hustle and bustle can confuse you at situations. You...
A lot of individuals have felt considerably less than pleased with the shape of their nose. This is specifically true as one particular ages. Worry of surgery could have held you absent from possessing the beautiful profile you have been dreaming of. In this age...
Weight–Loss:- Did you know that by taking in TONS of comprehensive extra fat meals like complete eggs, meats, comprehensive-extra fat milk, butter, any and all nuts, avocados, and much more delightful meals can in fact enable you to Free Weight and in fact enable you...
Do small blacks designs dance on your white residing home wall? Do you capture very little black circles or arrives floating in your peripheral vision? Spots before the eyes, referred to as floaters, can be irritating to people and medical practitioners alike. The regular respond...
Does self-hypnosis truly perform? It can be a very good, genuine question. Before you throw yourself into self-hypnosis whole power, make certain you know all the rewards and feasible disadvantages of the procedure. You will rapidly come across that there is self-hypnosis and there is...
The heart is a potent organ that operates frequently, with no at any time pausing to rest. Halting to operate for a handful of seconds implies catastrophe. Cardiovascular diseases are the initially lead to of loss of life in developed international locations. Each individual year...
Bacterial food items poisoning is becoming much more prevalent in the US. Some industry experts estimate that around seventy six million cases manifest just about every year. By subsequent a couple basic home safety measures, you can considerably lower your family's chances of food items...
Whether or not you have just made the decision it is time to quit using tobacco, or you have been making an attempt for some time, it under no circumstances hurts to get a little bit of help. Of program, absolutely everyone is various, and...
OCD, (obsessive-compulsive disorder) is a common disorder. Most of us have personality quirks that we tend to think of as being related to OCD, but in reality. They are nothing more than OCD tendencies, personality quirks are very, very normal. It is not...
Each individual individual desires to have the white dazzling tooth for the full lifetime. This is not a complicated process if you take treatment of your tooth from the very start out. The simple pattern of standard brushing can avoid you from several dental difficulties...
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...
While your joints may perhaps ache next a rigorous exercise, exercise is vital for the prevention of weak bones. This is one extra reason why exercise ought to be a portion of your each day regimen. Excess weight training in unique is most effective for...
Pregnancy and breastfeeding, both of those are the superb working experience for a girl. They give the feeling of gratification and completeness to the girl. But breast care is crucial in the course of being pregnant and lactation in buy to retain it healthier. Listed...