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...
Ringing in the ears is a symptom of Tinnitus Tinnitus is the continual ringing, buzzing, clicking, whooshing and other seems in your ears. It is not a condition in by itself, but a sign of some other concerns heading on in your body. It can...
When it comes to asthma home remedies be careful about which ones you choose. If you are looking for natural home remedies on the net, be careful and study each one before attempting them yourself, look for testimonials from other asthmatics that have similar symptoms...
When persons think about body weight loss programs, or losing body weight in general, the photos that occur to mind are of obese persons sweating it out in fitness centers, huffing and puffing all-around the observe, and very carefully counting calories in kitchens across The...
Bloating is not a illness by itself. It is much more of an indicator of some other really serious underlying professional medical affliction similar to digestive conditions this sort of as indigestion. Currently with introduction of pre-packed food items, quickly food stuff and all set...
There has been a surge of information that centres on most cancers-preventive measures. The most sought after methods are those people from the option facet. I feel that just about every person really should know this organic way to fight off most cancers. I would...
A great smile is defined by largely the teeth, which are to be guided and managed properly from the childhood when the milk teeth erupt into the oral cavity. The upkeep and care of principal teeth allows in eruption of permanent teeth afterwards at appropriate...
Autistic small children and grownups have deficits in social cognition, which indicates they lack the skill to believe in phrases that are acceptable wherever social interactions are important. This is discussed working with the "principle of thoughts" or the skill to thoughts examine. A commonly...
Can a man or woman be the two match and fat? With a nationwide obesity rate of approximately thirty p.c, this is a question that needs to be answered. Individuals do not appear to be actively looking for ways to be slender, and just because...
how to avoid prostate complications?Below is the three recommendations which you have to know. Stick to the recommendations of wife As the present day working day fast paced, many folks seldom have time to see a doctor, frequently a great deal of people with...
What Is Therapeutic massage Treatment Marketing? Therapeutic massage therapists typically consider that successful massage treatment marketing is done by phrase-of-mouth. Also substantial up on the record in marketing a massage treatment observe are enterprise playing cards, discount discount codes and fliers. However, a...
The inspiration for environmental ethics was the very first Earth Day in 1970 when environmentalists commenced urging philosophers who have been included with environmental groups to do something about environmental ethics. An intellectual climate experienced formulated in the past number of yrs of the 1960s...
Heart sickness is a standard phrase for a broad wide variety of diseases and disorders that affect the function of coronary heart. The most important position of the coronary heart is to pump blood to the relaxation of the human body. The primary concern with...
Bowling is not a hard game. But you have to learn the strategies and techniques that will assist you to be superior at bowling and do even extra strikes. The 1st phase is to buy the suitable equipment. It is indispensable if you desire to...
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...
Who does not want to wear a smile like a dazzle? Absolutely everybody needs to have an endearing smile that can seize glances. Considering the fact that it is just one of the foremost issues that anybody notices about you, oral cleanliness becomes significant. Maintaining...
Aortic valve regurgitation or aortic regurgitation is a condition that happens when your heart's aortic valve doesn't shut tightly. From the aorta, oxygen-rich blood flows into the branching arteries and by way of the entire body to feed the cells. The entire body doesn't receive...
Blepharitis can be associated with a skin situation this sort of as acne rosacea (malfunction of the oil glands) or a bacterial an infection (this sort of as staphylococcus). Eye make-up may possibly often result in blepharitis through an allergic response. Even even though it is...
You can cease overeating in its tracks when you incorporate these 3 swift tips to cease overeating. The trouble with overeating is that most people try out to pressure by themselves to abandon this behavior. This can function for a shorter interval of time but...
Soccer has surely captured the hearts of millions of People in america. Potentially this is why it is the most popular sport of the nation. In current years, there have been a lot of machines improvements generating soccer equipment safer for a lot of gamers....
Is it? Is it not? Could it be just a headache? How can you convey to it's a migraine? These are questions each individual migraine sufferer asks when migraines initial make an physical appearance into their life. Not just that, there are two types -...
Battling anxiousness is one thing that can be accomplished in many methods. A person way to combat anxiousness that may work for numerous folks is distraction – or instead, intellect-engagement. By stimulating our brains and starting to be so immersed in one thing that our...
When you consider of weight reduction and losing weight, the 1st points that most likely occur to your brain are either all those "reduce weight rapid " The thought driving this fully cost-free weight reduction diet program approach is quite basic...
#Smoking #Self-Hypnosis #SkinCare #Skin #Sleep According to some studies done in the US, less than 10% of people get their recommended doses of vitamins and minerals....
Turbinates Of Nose - Resection surgery in India Turbinates Of Nose – Resection The turbinates are a few modest ridges that operate deep within every single nostril. They jut out into the nose areas. They enable to heat and moisten the air you breathe...