????JFIF??x?x????'
Server IP : 104.21.112.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/./pontiacques.org/wp-content/plugins/give/includes/admin/forms/ |
Upload File : |
<?php /** * Metabox Functions * * @package Give * @subpackage Admin/Forms * @copyright Copyright (c) 2016, GiveWP * @license https://opensource.org/licenses/gpl-license GNU Public License * @since 1.0 */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Add Shortcode Copy Field to Publish Metabox * * @since: 1.0 */ function give_add_shortcode_to_publish_metabox() { if ( 'give_forms' !== get_post_type() ) { return false; } global $post; // Only enqueue scripts for CPT on post type screen if ( 'give_forms' === $post->post_type ) { // Shortcode column with select all input $shortcode = sprintf( '[give_form id="%s"]', absint( $post->ID ) ); printf( '<div class="misc-pub-section"><button type="button" class="button hint-tooltip hint--top js-give-shortcode-button" aria-label="%1$s" data-give-shortcode="%2$s"><span class="dashicons dashicons-admin-page"></span> %3$s</button></div>', esc_attr( $shortcode ), esc_attr( $shortcode ), esc_html__( 'Copy Shortcode', 'give' ) ); } } add_action( 'post_submitbox_misc_actions', 'give_add_shortcode_to_publish_metabox' );