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...
Depression can be devastating to all parts of persons' every day daily life. It isn't just a private agony its consequences contact each individual phase of culture and our financial system if it is not recognized and handled. If left untreated, signs can last for...
Summary These days marketers are hoping to endorse their manufacturers as environment friendly as all people all-around the globe is involved with environmental problem. Thee environmental problems are so critical as they influence all human routines. Business enterprise residences are also not an exception and have...
Each one needs to lead a delighted and lovely married lifestyle. Marriage is the most specific second in any body's lifestyle. Besides that they do not know what duties it arrives with. Ignorance about how to lead lifestyle right after getting married, probably makes depression...
"Seems do subject". This is just one cliché that really means a great deal in today's entire world. It is extremely critical for an specific to really feel superior about him to confront the entire world confidently. A lot of folks really feel disappointed with...
The American Most cancers Modern society is frequently on the estimate that 1000's, even 100s of 1000's, of Persons in america are influenced by cancer each and every 12 months. With your startling quantities currently being revealed frequently, hunting for techniques to prevent cancer is...
The brain is the most vital part of the human body, as without it we wouldn't be able to function properly. It is the control centre for the whole of the body, controlling everything so that all the organs are functioning correctly, so you can...
Melancholy is a person of the most common emotional ailments. It might be manifested in different degrees: from emotions of slight disappointment to utter distress and dejection. Melancholy is a really unpleasant malady and is significantly additional tricky to cope with than a bodily ailment....
You have to cease believing that loud night breathing is a indicator of a very good night rest. It's not! And it will never ever be. It may well be sweet in the 1st couple of minutes. Just after a though, it begins to audio...
Contrary to popular belief, the most important issue you can quite possibly do to have ideal 6 pack abs is not just 1000's of crunches. In point, it is not even countless abdomen workouts or unique machines acquired from late night time Tv set commercials. ...
When it arrives to owning extreme dandruff there is only 1 point you want in the globe and that is the fastest method on how to get rid of dandruff. But I will have to be the bearer of poor news, there is no speedy...
Although you might know it simply as a "reduced carb" diet, ketogenic diet programs are the best properties on the current market suitable now. As a subject of actuality in the previous several yrs there have been "more than 1500 reduced carb/ reduced glycemic goods...
According to dental specialists, it is recommended for an normal person to check out its dentist after just about every six months to have a right dental treatment and check out up. In other words, our teeth have to have not only our time for...
When you see those famous people on Tv flashing their pearly white enamel, what goes through your mind? Do you truly feel ashamed about your stained or yellow enamel? You are not on your own. Tens of millions are seeking for the answer to how...
Come across Holistic Wellness Schools in the United States and Canada. Whilst there is a extensive spectrum of healing arts classes that are offered by way of holistic health schools, core curriculums frequently encompass fundamental science experiments in anatomy and physiology, holistic philosophies and theories,...
Pregnancy after miscarriage is a frequent issue for lots of females that had a miscarriage. Examine on to see what you can do to produce a extra profitable pregnancy following a miscarriage. 20 -25% of all pregnancies conclusion in a miscarriage. No two pregnancies are...
One particular of the most effective sorts of leisure takes the kind of a sizzling tub. Immediately after a chaotic and demanding working day you can unwind and de-stress in a sizzling tub, which is sometimes also referred to as a spa or a whirlpool....
Quite a few ladies want to have even larger breasts, without the need of resorting to plastic surgeon's scalpel. Organic solutions can be, in some scenarios, efficient. For all those who want even larger breasts obviously, can try out one of the procedures down below,...
Gastroesophageal reflux illness (GERD), is a extremely typical illness impacting thousands and thousands of persons across the globe. GERD is triggered when the contents of the abdomen (and the digestive juices that are existing in the abdomen), leak again or get refluxed into the esophagus,...
If your hair loss starts around the onset of menopause, you can manage hormonal equilibrium (and therefore hair thickness) with herbs containing plant-based mostly estrogens, these as dong quai (Angelica sinensis) or ashwaganda (Withania somnifera), implies Linda Site, N.D., Ph.D., a naturopath and author of...
Depression can be grade in conditions of severity — meek, moderate, or significant. The amount of your despair can determine how you'll be handled. Most vital in the treatment method is the right mindset of those who are in speak to with the client, also...
A balanced eating plan and right in get will enable in preventing dental decay and this is the principal action which helps to maintain the enamel hygienic. Effective the dental cleanliness plan are finished by a lot of approaches and we must be quite thorough...
I really do not imagine there’s a muscle mass builder out there who doesn’t want to know how to create muscle mass quick. The issue is nonetheless that most men and women really do not know how to do it. The superior information is that...
Motherhood is the most attractive and the utmost responsible time period for any anticipating mother as it brings a lot of care to by yourself and the unborn. Tasks and duties start from the day a lady gets expecting. Being pregnant gets a lady in...
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...