Duplicate Widget

No photo.webp
; }

c2c_before_duplicate_widget_form (action)

The 『c2c_before_duplicate_widget_form』 hook allows you to output text, or perform some sort of action, just before the output of the duplicate widget』s configuration form (in the WP admin).

Arguments:

  • $instance (array) : The settings for the widget instance (namely: title and widget_to_duplicate)

Example:

// Display a message just before the duplicate widget settings form
add_action( 'c2c_before_duplicate_widget_form', 'my_c2c_before_duplicate_widget_form' );
function my_c2c_before_duplicate_widget_form( $instance ) {
    echo '

Note: this is a note above the widget settings form.

'; }

c2c_after_duplicate_widget_form (action)

The 『c2c_after_duplicate_widget_form』 hook allows you to output text, or perform some sort of action, just after the output of the duplicate widget』s configuration form (in the WP admin).

Arguments:

  • $instance (array) : The settings for the widget instance (namely: title and widget_to_duplicate)

Example:

// Display a message just after the duplicate widget settings form
add_action( 'c2c_after_duplicate_widget_form', 'my_c2c_after_duplicate_widget_form' );
function my_c2c_after_duplicate_widget_form( $instance ) {
    echo '

Note: this is a note below the widget settings form.

'; }

文章目錄

快速接入中國本土生態體系——

「文派葉子」

立即加入 50 萬中文社區站點

您可能也喜歡…