Skip to main content

Posts

Showing posts from April, 2018

Cron wp 3 minutes

add_filter( 'cron_schedules', 'isa_add_every_three_minutes' ); function isa_add_every_three_minutes( $schedules ) {     $schedules['every_three_minutes'] = array(             'interval'  => 180,             'display'   => __( 'Every 3 Minutes', 'textdomain' )     );     return $schedules; } // Schedule an action if it's not already scheduled if ( ! wp_next_scheduled( 'isa_add_every_three_minutes' ) ) {     wp_schedule_event( time(), 'every_three_minutes', 'isa_add_every_three_minutes' ); } // Hook into that action that'll fire every three minutes add_action( 'isa_add_every_three_minutes', 'every_three_minutes_event_func' ); function every_three_minutes_event_func() { $udemy_soap = new Udemy_SOAP(); $udemy_soap->update_course_from_udemy(); $log = date("j.n.Y"). " --- yonatan \r\n"; file_put_contents( get_template_directory(). '

Note WordPress 2

Log sql query WP https://wordpress.stackexchange.com/questions/144335/how-to-get-the-sql-of-the-changes-made-to-the-database-from-an-update-or-upgrade Access wordpress admin panel in virtual machine. Frontpage seem ok. It's look like this when use Chrome on Windows access VirtualBox linux server: dev.sc.com:8086/shop/ When access admin it redirect back. So there are some code, config that handle that. Figure out oauthen, htaccess, DB ... rules that prevent this access. This access is critical since it avoid using heavy chrome on slowly vbox. https://stackoverflow.com/questions/36965352/woocommerce-finding-the-products-in-database WooCommerce some data structure. Programatic add product variants https://stackoverflow.com/questions/23444319/wordpress-woocommerce-use-update-post-meta-to-add-product-attributes Add_action vs do_action ? https://stackoverflow.com/questions/32294815/wordpress-track-when-user-data-updated-hook-not-working WC creating order programmatical