Server IP : 15.235.198.142 / Your IP : 216.73.216.190 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/kiwigrass_LIVE/wp-content/plugins/post-duplicator/includes/ |
Upload File : |
<?php /* --------------------------------------------------------- */ /* !Create an admin notice that a post has been duplicated - 2.27 */ /* --------------------------------------------------------- */ function mtphr_post_duplicator_notice() { $duplicated_id = isset( $_GET['post-duplicated'] ) ? intval( $_GET['post-duplicated'] ) : ''; if( $duplicated_id != '' ) { $settings = get_mtphr_post_duplicator_settings(); // Get the post type object $duplicated_post = get_post( $duplicated_id ); $post_type = get_post_type_object( $duplicated_post->post_type ); // Set the button label $pt = sanitize_text_field( $post_type->labels->singular_name ); $link = wp_kses_post( '<a href="'.get_edit_post_link( $duplicated_id ).'">'.esc_html__( 'here', 'post-duplicator' ).'</a>' ); $label = sprintf( __( 'Successfully Duplicated! You can edit your new %1$s %2$s.', 'post-duplicator' ), $pt, $link ); ?> <div class="updated"> <p><?php echo wp_kses_post( $label ); ?></p> </div> <?php } } add_action('admin_notices', 'mtphr_post_duplicator_notice');