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...
Is there any evidence that distant healing operates? And just what is distant healing? Distant healing is also identified as distant healing, absent healing or distance healing. It will take put when one particular or much more healers deliver power or thought vibrations...
Back again in the 60s and 70s, medical professionals had been by now telling us that listening to loud rock audio could at some point guide to listening to ear sounds like frequent ringing in the ears from tinnitus. It seems all those medical professionals...
Is hen and rice wholesome for dropping fats? The finest food items to take in to reduce bodyweightare typically imagined of to be "terrible". Figuring out the food items that burn fats rapid will support you increase your metabolism rapid. It's a shame that there is...
The method that consists of earning choices and then actions in regard to protecting the atmosphere and to sustain human lifetime is environmental sustainability. Men and women are now acknowledging the effect of organizations on the atmosphere. It is crucial to choose choices that can...
What is Heartburn? It commences as a burning suffering in the center of your upper body, driving the breastbone, typically following a huge meal. The burning feeling could go upward toward your neck and is typically accompanied by a emotion of food items coming back into your...
An believed 10 to 20 per cent of individuals throughout the country suffer from some degree of tinnitus, a ringing or buzzing in the ears. The challenge may start off out as a smaller annoyance, but the more time it lasts the far more unbearable...
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....
There are a variety of careers in electricity healing, which includes Reiki, acupuncture, chromotherapy, electromagnetic remedy, electricity medication, quantum contact, and therapeutic contact, between other people. Careers in electricity healing like therapeutic contact, for illustration, contain the practitioner sweeping the palms of his palms...
If you you should not have you at any time listened to of the spice turmeric, you need to have to know that is a person of the effective natural elements, which has been made use of for centuries for its several medicinal properties in...
Plastic surgeons complete a rhinoplasty working with possibly of two methods, closed rhinoplasty or open rhinoplasty. Browse on to know far more about the former. In a closed or endonasal rhinoplasty the incisions are built inside the nose. Just one benefit of this method...
Regardless of other duties, and you have a good deal, the management of workers in a resort setting is the most very important and the most complicated. Recognizing how to treatment for your personnel qualified prospects to outstanding treatment of prospects, and these resort management...
Our ft have the whole bodyweight of our bodies day in and day out. It is straightforward to have an understanding of how these 26 modest bones will never constantly continue to be in alignment as they soak up the impression of your human body...
Aromatherapy massage is the massage done working with aromatherapy vital oils. Aromatherapy massage not only aids you in rest but also rejuvenate your human body from head to toe.You can improve your well staying of thoughts and human body by working with vital oils of...
One particular of the nicest factors about hypnosis is that it is easy to master. It is a fantasy that you require to be an expert to carry it out. There are basically two sorts of hypnosis procedures: the overt and the covert. The overt...
To look attractive and younger is aspiration of just about every individual, primarily ladies aspiration to look more youthful mostly. It can be no matter how old you are you would like to look younger and smart. There are a range of beauty methods that...
The good news is, most of the blisters you get with shoes will not happen when you are barefoot running. The reason for this is, most shoe-running blisters occur where the shoe is rubbing on your foot, and that simply can't happen with barefoot...
Bronchial asthma is a serious respiratory sickness in which airways in the lungs periodically develop into narrowed, obstructed, or even blocked. An approximated 15 million People experience from asthma, and the selection of new asthma circumstances boosts yearly. Bronchial asthma frequently develops in childhood...
If you are in the placement whereby you want to know how to help an alcoholic, because you are exhausted of the liquid which has offered your friend or family members member so quite a few ups and downs and additional downs. Like cigarettes, liquor...
Hand dermatitis (also acknowledged as hand eczema) typically effects from a mixture of results in, including genetic makeup (constitutional elements), injury (make contact with with irritants) and allergy. This issue is commonly multi-factorial. The pores and skin can react to the irritation by forming scales....
Quickly body weight decline diet plans are popular mainly because they assure brief body weight decline with small effort. Even though some of these body weight decline designs are not balanced, and can even be unsafe, there are some fast body weight decline diet plans...
#EarsHearing #Ears #Eczema #EnvironmentalIssues Cardio is defined an exercise that incorporates movement of the arms and legs over a set period of time with an intent of...
1 of the 1st matters that persons observe about us is our smiles and when you are prepared to just take a instant and to make guaranteed that you are going to be equipped to take pleasure in that smile for a excellent extended time,...
Reiki symbols are handed from Reiki Grasp to Reiki Grasp and are most typically employed for healing and security. Of Japanese origin, the secrecy of the Reiki symbols is truly a Western tradition. It is not uncommon in Japan to see Reiki symbols displayed extremely...
If you have eczema you will know that it can start out to choose more than your lifestyle and make you extremely miserable. The incidence of eczema in both equally young children and older people throughout the world is soaring. If you are in this...