test

echo 'test';

Add TikTok to the social tab of settings

This will show the setting and it should be saved when saving the form.

Disable Blog Posts

// Remove side menu add_action( 'admin_menu', function () { remove_menu_page( 'edit.php' ); } ); // Remove…

Untitled Snippet

@ini_set( 'upload_max_size' , '120M' ); @ini_set( 'post_max_size', '120M'); @ini_set( 'max_execution_time', '300' );

Untitled Snippet

google-site-verification=6Ml542WH4lYeFrqKo9pBa6NBaAyONR9l0k5Sgrk27xk

Untitled Snippet

google-site-verification=Z6ci_S0g839p6z-pqU4OUb5KSQpdoJBRrjh791uaErY

Escaping Data

// instead the _e(), __() or _x() use the escaped version _e('Email Summary', 'duplicator-pro'); // this…

Change the "Commission" header for the Recent Orders table

Change the "Commission" header for the Recent Orders table using the "wcvendors_recent_order_table_columns" filter hook.

Change the action's string in the refund section - "View Details"

Change the action's string in the refund section - "View Details"

Remove Location Taxonomy

// Add custom Bulk Action to the Pages view function custom_add_bulk_action() { global $post_type; if ($post_type…

Remove WordPress Version Number

add_filter('the_generator', '__return_empty_string');

<10

Disable Gutenberg Editor (use Classic Editor)

add_filter('gutenberg_can_edit_post', '__return_false', 5); add_filter('use_block_editor_for_post', '__return_false', 5);

<10

Remove Gutenberg CSS

//Remove Gutenberg Block Library CSS from loading on the frontend function smartwp_remove_wp_block_library_css(){ wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style(…

<10

Stop Lazy Load

add_filter( 'wp_lazy_loading_enabled', '__return_false' );

<10
1 56 57 58 59 60 113