PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.17.0
GiveWP – Donation Plugin and Fundraising Platform v4.17.0
4.17.0 4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 All 256 releases
← All changes | includes/admin/shortcodes/shortcode-give-register.php +12 -2 2.3.0 → 4.17.0 View file →
@@ -3,9 +3,9 @@
3 3 * The [give_register] Shortcode Generator class
4 4 *
5 5 * @package Give
6 6 * @subpackage Admin
7 - * @copyright Copyright (c) 2016, WordImpress
7 + * @copyright Copyright (c) 2016, GiveWP
8 8 * @license https://opensource.org/licenses/gpl-license GNU Public License
9 9 * @since 1.3.0
10 10 */
11 11
@@ -44,9 +44,19 @@
44 44 'name' => 'redirect',
45 45 'minWidth' => 320,
46 46 'tooltip' => esc_attr__( 'Enter an URL here to redirect to after registering.', 'give' ),
47 47 ),
48 + array(
49 + 'type' => 'docs_link',
50 + 'text' => esc_html__( 'Learn more about the Register Shortcode', 'give' ),
51 + 'link' => 'http://docs.givewp.com/shortcode-give-register',
52 + ),
48 53 );
49 54 }
50 55 }
51 56
52 -new Give_Shortcode_Register;
57 +/**
58 + * @since 4.3.0 use init action
59 + */
60 +add_action( 'init', static function () {
61 + new Give_Shortcode_Register();
62 +});