First, i'd like to point I do this probably wrong, but this is a bit of a desperate thing and it popped in my head.
We are developing a site for a client, and he wants breadcrumbs. Now we downloaded a plugin that allows you to place breadcrumbs by calling the breadcrumbs_trial function. Since the theme doesn't support PHP additions, and we want to place it a dynamic spot within the page that isnt accessable easily.
Since the theme codeblock accepts shortcode, i thought (maybe stupid) to create run the breadcrumb in a shortcode, so I made an attempt,
function breadcrumbs_func( $atts ){
breadcrumb_trail();
}
add_shortcode( 'breadcrumbs', 'breadcrumbs_func' );
Now I realise, I go offcourse in the scope of the function, and the breadcrumb_trail() function isn't defined in here. Is there a way i can run this stand alone function from another plugin in such thing?
edit
I made a typo, and it does run, but it just isn't displayed at the right position now... tweaking further i guess