PluginProbe
Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code / 1.7.3
Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code v1.7.3
5.5.3 3.1.0 3.2.0 3.2.1 3.3.0 3.4.0 3.4.1 3.4.2 3.4.3 3.5.0 3.5.1 3.5.2 3.6.0 3.7.0 3.8.0 3.8.1 3.8.2 3.8.3 4.0.0 4.0.2 4.0.3 4.0.4 4.0.5 4.1.0 4.1.1 All 78 releases
← All changes | copy-the-code.php +17 -58 5.5.31.7.3 View file →
@@ -1,63 +1,22 @@
1 -<?php // @codingStandardsIgnoreLine
1 +<?php
2 2 /**
3 - * Copy Anything to Clipboard Plugin.
3 + * Plugin Name: Copy Anything to Clipboard
4 + * Plugin URI: https://github.com/maheshwaghmare/copy-the-code/
5 + * Description: Copy the Text or HTML into the clipboard 📋 (clipboard). You can use it for code snippets, special symbols, discount codes, or anything which you want. By default it add the copy to clipboard button to the <code>&lt;pre&gt;</code> tag. Documentations and more visit <a href="https://github.com/maheshwaghmare/copy-the-code/"> on GitHub</a>.
6 + * Version: 1.7.3
7 + * Author: Mahesh M. Waghmare
8 + * Author URI: https://maheshwaghmare.wordpress.com/
9 + * Text Domain: copy-the-code
4 10 *
5 - * @package Copy Anything to Clipboard
6 - * @copyright Copyright (C) 2026, Clipboard Agency - dev@clipboard.agency
7 - * @link https://clipboard.agency
8 - * @since 5.0.0
9 - *
10 - * @wordpress-plugin
11 - * Plugin Name: Copy Anything to Clipboard
12 - * Plugin URI: https://clipboard.agency/
13 - * Description: Add copy-to-clipboard buttons to any element with the powerful <strong>Global Injector</strong> — no coding required. Features visual style presets (Button, Icon, Cover), display conditions, and live preview. Perfect for <strong>Code Snippets</strong>, <strong>Coupons</strong>, <strong>WooCommerce SKUs</strong>, and more.
14 - * Version: 5.5.3
15 - * Author: Clipboard Agency
16 - * Author URI: https://clipboard.agency/
17 - * License: GPL v3
18 - * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
19 - * Text Domain: ctc
20 - * Domain Path: /languages
21 - *
22 - */
23 -
24 -if ( ! defined( 'ABSPATH' ) ) {
25 - exit;
26 -}
27 -
28 -/**
29 - * Freemius conflict resolution.
30 - *
31 - * If another instance of this plugin (free or pro) has already initialized Freemius,
32 - * just register this file with Freemius and exit. This prevents class redeclaration
33 - * errors when both free and pro versions are active.
11 + * @package Copy the Code
34 12 */
35 -if ( function_exists( 'ctc_fs' ) ) {
36 - $fs = ctc_fs();
37 - if ( $fs ) {
38 - // Register this file with Freemius.
39 - // Use true for premium, false for free. Freemius handles this via @fs_premium_only.
40 - $fs->set_basename( false, __FILE__ );
41 - }
42 - return;
43 -}
44 13
45 -// Define plugin constants.
46 -define( 'CTC_VER', '5.5.3' );
47 -define( 'CTC_FILE', __FILE__ );
48 -define( 'CTC_BASE', plugin_basename( CTC_FILE ) );
49 -define( 'CTC_DIR', plugin_dir_path( CTC_FILE ) );
50 -define( 'CTC_URI', plugins_url( '/', CTC_FILE ) );
51 -define( 'CTC_GUTENBERG_DIR', CTC_DIR . 'includes/gutenberg/' );
52 -define( 'CTC_GUTENBERG_URI', CTC_URI . 'includes/gutenberg/' );
53 -define( 'CTC_ELEMENTOR_DIR', CTC_DIR . 'includes/elementor/' );
54 -define( 'CTC_ELEMENTOR_URI', CTC_URI . 'includes/elementor/' );
14 +// Set constants.
15 +define( 'COPY_THE_CODE_TITLE', esc_html__( 'Copy Anything to Clipboard', 'copy-the-code' ) );
16 +define( 'COPY_THE_CODE_VER', '1.7.3' );
17 +define( 'COPY_THE_CODE_FILE', __FILE__ );
18 +define( 'COPY_THE_CODE_BASE', plugin_basename( COPY_THE_CODE_FILE ) );
19 +define( 'COPY_THE_CODE_DIR', plugin_dir_path( COPY_THE_CODE_FILE ) );
20 +define( 'COPY_THE_CODE_URI', plugins_url( '/', COPY_THE_CODE_FILE ) );
55 21
56 -// Initialize Freemius.
57 -require_once CTC_DIR . 'includes/freemius.php';
58 -
59 -// Include the main plugin class.
60 -require_once CTC_DIR . 'includes/class-core.php';
61 -
62 -// Start the plugin.
63 -ctc();
22 +require_once COPY_THE_CODE_DIR . 'classes/class-copy-the-code.php';