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...
It is true that there are no dental clinics that are the same in terms of services and amenities. If you are looking for the best dental clinic, it is best to consider its amenities. There are some dental clinics that may not have skilled...
If you suffer from itchy scalp, dandruff, hair fall and other similar hair problems, it is probably time for you to go all natural. Essential oils are the best way to go natural and treat various scalp and hair problems. These oils have been...
Right after a busy working day at work all of us look ahead to a crack. And what a much better way to take it easy than go for a luxury spa session! Correct from a hydro therapeutic massage shower to a calming therapeutic massage...
It really is poor sufficient to have acid reflux--the backflow of abdomen acid into the esophagus that causes heartburn and distress for hundreds of thousands. Incorporate on bile reflux, wherever digestive fluid from the liver flows into the abdomen and esophagus, and you've got obtained...
Tired of silly sitcoms that depict every guy as an insensitive jerk toward the women of all ages in their life? In real truth most adult men like and cherish their women of all ages. They want almost nothing much more than to give these...
Hearing is as significant as with our other senses. If we are unable to listen to, how can we enjoy the appears of mother nature, the songs that uplifts our soul, or listen to the variety and loving words and phrases from our liked types,...
Making use of your contacts correct guarantees clear vision, greater eye well being and maximum ease and comfort whilst wearing them. Numerous first-time wearers have concerns about make contact with lenses hygiene and use. Consider these following suggestions to get the most of your lenses.Comply...
An apple a working day keeps the health care provider away. We have all listened to this a million instances in our life, but for some cause we would relatively seize a double stuffed OREO when we truly feel like a snack. Would we be...
Can Quit Snoring Workout routines Quit Your Snoring? Snoring aids, loud night breathing products and surgical method are the most widespread remedies to heal loud night breathing. The disadvantage of these aides and products are usually they are pretty expensive, specially if you’re working with...
Patients of all ethnicities generally glimpse towards rhinoplasty as a lovely way to greatly enhance the look of their nose. In distinct, sufferers of Asian heritage could want to redefine their nose to accomplish a greater bridge. If you are looking to elevate the profile...
Are you acquiring hassle acquiring the appropriate option on how to get rid of hemroids for superior? It appears to be that I was in that boat for pretty a even though when I tried using to locate a option to treatment hemorrhoids after and...
Los tintes están hechos de compuestos y para obtener en la corteza en la corteza del cabello requieren de un producto oxidante para que los Pigmentos de Tintes del colour se desarrollen, los cuales también se les llama tintes de oxidación. Para ello, antes de...
Locate Out About Reversing Heart Sickness By natural means With Food plan According to the figures about heart condition printed in 2006 by the Centre for Sickness Command, 24.seven million older people have been diagnosed with heart condition. This determine is equal to 11.5% of...
I get a great deal of emails asking for recommendations on coping when your spouse has left but you however adore him and want him again. It can be pretty distressing and just experience odd when you are on your possess and experience like portion...
Do you like listening to music in all places you go? You may possibly be at residence in your dwelling space with the music blasting for a house celebration, you hear to music on the subway as you avoid the potent screeching seems coming from...
Foodstuff habit enable is obtainable in distinctive kinds. You can gain from making use of hypnosis for overeating. You can love cooking your beloved recipes and you can even now have great cuisine in dining places. You just will need to see it as nutrition...
Salt is a nutrient that is wanted everyday by all humans. It is most essential for appropriate mobile maintenance andd development and thus is a crucial nutrient in the food plan of a expecting woman. As a pregnancy progresses, a woman's body will make more...
Opposite to popular belief, mastering how to live a healthful everyday living doesn’t need you to sacrifice most points you’re accustomed to. Absolutely sure, there are those who like getting their healthful way of living to a entire new stage, but that doesn’t imply you...
Being equipped to de-escalate one's personal and the anger of other individuals is an vital skill to have in company. Ideally, this is not one thing the reader specials with on a standard foundation but sadly most people in company face possibly their personal anger...
Relieve from melancholy, anxiety, and tension demanded regular follow of yoga. Yoga is the greatest work out to get rid from the illness. Yoga comes from the Sanskrit term which means be a part of or unite. This indicates union amongst entire body,...
Eczema, is a type of dermatitis - which causes inflammation of the skin, dryness, itchiness and blistering. If you suffer from eczema and want to know how to cure eczema QUICKLY then this article will reveal a few of the most effective alternative methods to...
Good denture care is extremely critical for the general oral overall health of a particular person. So let's take a look at selected strategies and methods necessary for suitable denture care in Edmonton or any where else in the globe. Handle Your Dentures with TreatmentIn get...
Hypnosis is a psychological state of heightened anxious relaxation exactly where the unconscious section of the mind is far more open up and vulnerable to suggestions. The use of hypnosis in psychotherapy and medicine in its seemingly near relative the "placebo result" has led to...
How To Improve Taller Obviously Rapid A superior peak also indicates an outstanding identity. If you have an normal peak then you will have to examine this write-up. This write-up will give you some of the best all-natural ways of expanding taller. They are straightforward...