简体   繁体   中英

how to hook plugin function into custom function in wordpress

In wordpress I am trying to use Advance Custom Field Plugin's function into my own function. I have added

add_action( 'post_link_resource_lessonplans_shortcode', 'the_field' );

before my function and into my function. I have use

do_action('the_field');

but there is no result i can found on the browser so any help? thanks in advance.

Just use the_field($field_name) directly in your custom function. Or

if(function_exists('the_field')){
    the_field($field_name);
}

Anyway the_field function needs at least one parameter.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM