This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add following code into funcitons.php file of your active theme or with any code snippets plugin | |
*/ | |
add_filter( 'jet-engine/listings/allowed-callbacks', function( $callbacks ) { | |
$callbacks['my_jet_engine_get_user_data'] = __( 'Get user data by ID' ); | |
return $callbacks; | |
} ); | |
add_filter( 'jet-engine/listings/allowed-callbacks-args', function( $args ) { |
OlderNewer