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...
A great deal of the periods I hear people today about me talk about when is an proper age to commence working with anti growing old encounter cream, or other anti growing old skin merchandise. And remarkably ample, a great deal of people "people today" flip...
Eye floaters are incredibly frequent. In most circumstances they are a delicate annoyance at worst, but for some they are critical adequate to obscure vision generating it complicated to read or perform other day-to-day responsibilities. Even if not harmless floaters can be a genuine dilemma....
Skincare is not just about deal with. Other parts of the body should have the same form of care and pampering. Just a very little body massage with the proper aroma oil will not only increase skin`s excellent, but also make a person really feel...
If you feel uncomfortable while using drugs to cure simple health problems, there is another option for you. There are a number of natural alternatives to treat ailments. Alternative natural medicine treatment is gaining popularity, and if used correctly, can be quite beneficial for...
To stay healthful our physique involves a variety of nutritional vitamins, minerals and other vitamins. These vitamins, nutritional vitamins and minerals are accessible via a variety of foodstuff. Insufficient of these vitamins make the physique endure from a variety of deficiency. IN purchase to fulfil...
Lovely nails have been an obsession that can be traced back again to the historic Chinese. It has been explained that the Mandarins (males & girls) thought of extensive nails to be a signal of wealth. If you had two-inch talons, that was a signal...
Depression, also clinically identified as big depressive problem, affects tens of millions of people today about the environment but most do not fully grasp that melancholy is a pretty authentic sickness. Individuals that have by no means suffered with melancholy fully grasp pretty small about...
Buying Out A Superior Colon Cleanse Working with the "MRCW T.I.P.P.S.S" Method Most individuals do not use any aim conditions to select a fantastic colon cleanse item. Client possibilities are normally based mostly on subjective components like photos or recommendations. Numerous individuals do not know...
5 Finest positions to get expecting fastGetting expecting possibly the easiest of all things, even so, some partners do locate it tricky to conceive for various explanations, together with weak or inadequate sperm rely. In some situations, as when mother nature desires a strengthen, a small...
People today are living a incredibly stressful everyday living these days and as a result of which they facial area with a good selection of wellness challenges. Everyday living is so active that people today really do not invested any time on training or stress-free....
Is your lifestyle finding blurry ? Your blurry eyesight will turn to be distinct eyesight if you comprehend on how to choose good treatment of your eyes by kicking negative practices, alter your lifestyle do frequent eye workouts to ease the tension make them chill...
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...
Our everyday living and well being is impacted every working day by the food items we eat. Your human body requirements a continual source of electricity to fuel your heartbeat, respiration, digestion and to support maintenance human body tissue. This electricity is measured in calories....
The holiday season is coming. This holiday season can be heartwarming. But sometimes it can also cause heart troubles. Extreme consuming in the holiday get-togethers is not a great notion. Any act that triggers the disruption of the usual heart rhythm need to be avoided....
Sexual intercourse has been taking place on the planet ever considering that the first non-protozoon animal has progressed. Even soon after various ages of evolution, sexual intercourse is still the only suggests to reproduce for better organisms. There are several sophistications where by...
Learning how to catch sea bass is just not always challenging, but for inexperienced angler, it can be a discovering curve of sorts. The critical element to try to remember is that you definitely will require some follow and you will require to be ready...
Given that 2004, I've suffered from a problem known as, "seborrheic dermatitis. Some persons who have this type of dermatitis get relief from a lot of of the merchandise or shampoo's available…but for some persons this kind of as myself, getting relief can be elusive...
Muscular dystrophies are a group of far more than twenty distinctive genetic neuromuscular conditions, some far more debilitating than some others. The most frequent, Duchenne muscular dystrophy (DMD) influences 1 in 3500 boys. There is a issue in the chromosome that codes for a protein...
Brittle nails are typically not simply because of a health care sickness. Brittle fingernails are a typical status, occurring to about twenty% of folks more girls than adult males produce brittle nails. Brittle nails typically break or strip in horizontal levels, commencing at the nail's...
Gradual dancing is just one of the most passionate means you can get shut and intimate with your spouse at a community location. A lot of girls love it when the male asks for their hand and takes them to the dance flooring. So keep...
"A very good therapeutic massage therapist is like a 4 leaf clover, difficult to discover and blessed to have"We at instances are so fast paced in our operate regimen, making an attempt to cope with the expenses and everyday charges that we do not comprehend...
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...
Dilemma in Beauty Plastic Surgical treatment This is a person detail for positive that I, as a Plastic Surgeon could share to any one incredibly much interested in boosting their physical overall look. Right now, that the general public have an improved desire in cosmetic...
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...