Skip to main content
divicoding u/divicoding avatar

Divi Coding

u/divicoding

Feed options
Hot
New
Top
View
Card
Compact


You can order your custom post types in all ways supported by WP_Query with Divi Query Builder




Try this filter hook

function add_our_custom_action( $actions ) {
    return array_merge( $actions, array( 'YOUR_AJAX_ACTION' ) );
}

add_filter('et_builder_load_actions','add_our_custom_action');