Auto Vote 5 sao cho bài viết mới
function auto_vote_5_stars_on_publish($ID, $post) { if ($post->post_status === 'publish') { if (function_exists('kk_star_ratings_insert')) { kk_star_ratings_insert("5", $ID); } }…
AIO Dashboard
Suport for AIO SEO dashboard
Send Google Drive link to Google Sheets and purge entries
Delays the Google Sheets task until Google Drive has finished uploading, then swaps the local/download URL…
Use Billing Address in Order Exports
add_filter( 'wcv_export_orders_use_shipping_address', 'wcv_order_export_use_shipping_address' ); function wcv_order_export_use_shipping_address( ){ return false;
Bulk Change Custom Order Status wpadmin
add_filter( 'bulk_actions-edit-shop_order', 'misha_register_bulk_action' ); // edit-shop_order is the screen ID of the orders page function misha_register_bulk_action(…
Add file to media library programmatically
wp_insert_attachment( string|array $args, string|false $file = false, int $parent_post_id, bool $wp_error = false, bool $fire_after_hooks =…
Untitled Snippet
https://github.com/dontcrash/NRD.git
Untitled Snippet
TEKS
Emails via two different Postmark streams based on the email subject
WP Mail SMTP plugin does not directly support selecting a specific Postmark message stream based on…
MemberPress: Extend Grace Period for Renewals
Adding this code will extend the grace period for renewals (default is 0). Change the number…