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...
Moxa is Chinese medication made from dried mugwort. This medication is utilised in traditional Chinese treatment regarded as moxibustion. The mugwort is aged then grid up to fluff. The fluff is burnt in a cigar formed adhere, regarded as moxa adhere. It is possibly utilised...
Do you go through from recurrent problems although at work? Do your eyes come to feel worn out and worn out by the end of the day? These may reveal that you go through from eye pressure. A several other signs include things like...
If the final time you had an ear infection was back again in the second grade, take into account you fortunate. Whilst most of us do get our earaches out of the way in childhood, there are times when grown ups get them. One particular...
You are not by itself and you are not the only a person browsing for a treatment for GERD. Online figures demonstrate that people today browsing for GERD (gastro esophageal reflux ailment), acid reflux and heartburn have been exponentially escalating in excess of the previous...
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...
The two excellent Chinese philosophies, Confucius and Taoism, not only contributed to philosophy but also to the way the Chinese food items is prepared and served. Getting ready Chinese food items demands a whole lot of experience and encounter. The Chinese culture has a special...
The most common source of dental discomfort is tooth decay. As decay progresses, bacteria invade the pulp which is the mass of blood vessels and nerves at the center of the tooth and activate pain receptors there. It hurts when you bite down or...
If you make the option to order fitness devices, specifically the form that makes it possible for you to stroll indoors, you should really be ready with a collection of hints and tips arranged into a treadmill buying guidebook. Heaps of important elements should really...
#Acne #HealingArts #HeartDisease #Heartburn My skin is very important to me. I have taken care of it throughout my lifetime. I am in my 50's with very little wrinkles. I ate...
It is not unlikely that you might develop the sickness known as Gastroesphogeal Reflux Disorder or acid reflux. As a matter-of-point, a person out of every single ten older people might develop the condition in a lifetime. GERD is a serious digestive disorder that damages...
Healthier and robust teeth are an significant aspect of boy or girl wellness. Children's teeth start out to establish in advance of they are born. There are two sets of teeth initial is milk teeth and second is lasting teeth. Milk teeth have an significant...
It has been a issue for most of the parents of children with autism or asperger's syndrome that their children will not likely take the medication very easily. Drugs usually are not some thing that you could just give up, it really is such an...
#Aerobics #Cholesterol #HealthieCosmetic #CosmeticSurgery Human touch in the form of massage, is one of the most powerful and therapeutic therapies for our bodies and minds.Many studies show that just basic touch in general is needed by infants...
Serious alcohol abuse signs or symptoms can demonstrate early signals of genuine probable overall health issues these as loss of muscle tissue, loss of memory, and loss of testosterone, just to title a several. Alcohol also impacts just about every cell inside your system, and...
To construct lean muscle mass fast, excellent physique builders use each their physique and their mind. Lots of reputed physique builders imagine that physique making entails far more than just perspiring it out and pumping iron they have been affected sizeable by the function performed...
The Illuminati is a name that currently is utilised to speak of several teams characterised by secrecy, all teams performing collectively, having a person single purpose, since of having one and the similar god. Historically nevertheless, it refers particularly to the Bavarian Illuminati, founded on...
Your skin, alongside with your eyes, teeth, and hair are the items that will display your age. They can give an correct photo of your real age, or they can mislead the viewer making you appear more youthful than your decades or they can mislead...
A kidney stone is a collection of crystals that separate from the urine in just the urinary tract. It is just one of the most agonizing urological disorders and the most common of the urinary tract disorders. Human beings generate substances in their urine to...
Societal marketing: McDonald's Business executives are typically perplexed by the continual growth of society's expectations of businesses. For case in point, in the company planet, several legal guidelines and substantial government regulation have an effect on almost every facet of enterprise pursuits. They contact "virtually...
The effects of depression on individuals can be serious mentally and physically. Many individuals are not even aware that they have depression and feel they can just pull through whatever it is they are going through leaving themselves open to the depression progressively getting...
Anger and addiction are intently related.. Whether or not the addict is active in his or her addiction and/or trying to get sober, anger seems to be the underlying experience. Anger is the manifestation of dread dependent views that are uncontrollable. In buy to escape...
Ear ringing disturbs us in a great deal of approaches. A consistent audio bothering us all the time interrupts our day by day functions. We now patterned our daily life and often the matters that we do every day are just habitual and repeating. But if...
#Aromatherapy #Asthma #Dental #Diseases #DrugAbuse Diabetes is quite the common condition in the US, especially with the rate of obesity. Even though...
If you have diabetes then you know how important it is to try to keep it under control as best as you possibly can. There are many ways you can manage diabetes, and many things that you can do on your own. If you are...