name: Update lists on: schedule: – cron: ‘0 0,12 * * *’ # At 00:00 and 12:00 (midnight and noon) every day workflow_dispatch: # Manual triggering inputs: run-manual: description: ‘Run the script manually’ required: false default: ‘yes’ jobs: build: runs-on:…Continue reading
https://github.com/dontcrash/NRD.gitContinue reading
wordpress $ cd wp-content wp-content $ cd plugins plugins $ mkdir plugin-name plugins $ cd plugin-name plugin-name $ vi plugin-name.phpContinue reading
https://www.highcpmgate.com/nhbhtr0d?key=03e2438ad5e312b7ac5fafb7447c08d2Continue reading
add_action( ‘admin_bar_menu’, function ( $admin_bar ) { // Only show this when editing a post. $screen = get_current_screen(); if ( ! $screen || ‘post’ !== $screen->base ) { return; } $post = get_post(); $post_type_object = get_post_type_object( $post->post_type ); if (…Continue reading
/** * Ensure Customer Subscriptions are available in the payment confirmation data. */ add_filter( ‘simpay_payment_confirmation_data’, function( $payment_confirmation_data ) { $subscriptions = \SimplePay\Core\API\Subscriptions\all( array( ‘customer’ => $payment_confirmation_data[‘customer’]->id, ‘limit’ => 1, ‘status’ => ‘all’, ‘expand’ => array( ‘data.latest_invoice’, ‘data.latest_invoice.payment_intent’, ), ), $payment_confirmation_data[‘form’]->get_api_request_args()…Continue reading