Category: Uncategorized

WordPress REST API Custom Endpoint with URL Parameter

First you need to pass in the namespace to register_rest_route Like this add_action( ‘rest_api_init’, function () { register_rest_route( ‘namespace/v1’, ‘/product/(?P<id>d+)’, array( ‘methods’ => ‘GET’, ‘callback’ => ‘my_awesome_func’, )

Programmatically creating new order in Woocommerce

Programmatically creating new order in Woocommerce function create_vip_order() { global $woocommerce; $address = array( ‘first_name’ => ‘111Joe’, ‘last_name’ => ‘Conlin’, ‘company’ => ‘Speed Society’, ’email’

How to change “pay for order” button text in woocommerce?

add_filter( ‘woocommerce_pay_order_button_html’, ‘amitpal_custom_pay_order_button’ ); function amitpal_custom_pay_order_button( $button_html ) { $button_html = str_replace( ‘Pay for order’, ‘Pay’, $button_html ); return $button_html; }

WordPress meta query: Get lowest or highest number value?

function lowest_price(){ global $wp_query; $args = array( ‘post_type’ => array(“automjete”, “elektronike”, “vendbanime”, “sport-rekreacion”, “kafshe”, “telefona”, “shtepi-kopsht”, “veshje-bukurie”, “biznes-sherbime”), ‘orderby’ => ‘meta_value’, // meta_value_num for value

How to Attribute?

Lorem ipsum is typically a corrupted version of De finibus bonorum et malorum, a 1st-century BC text by the Roman statesman and philosopher Cicero.
for Example: Website, Social Media, Blogs, ebooks , newsletter, etc.
Lorem ipsum is typically a corrupted version of De finibus bonorum et malorum, a 1st-century BC text by the Roman statesman and philosopher Cicero.
Copied!

Got a Question? Check out our FAQ Section.

Your action, our appreciation

It encourage us to give you more valuable content on website.