I am trying to work out how to call a function from an external PHP file.
So far I have this:
<?php
include("http://www.website.net/wp-content/plugins/monarch/monarch.php");
display_inline();
?>
The function display_inline(); returns a string of HTML/CSS.
Just need to know if you think the syntax is correct?