Viewing 1 replies (of 1 total)
  • Plugin Author Jose Luis SAYAGO

    (@iluminatus)

    Hello,

    Just verify the function exists, then set the parameters if you want (they’re optional) and display it where you want:

    if( function_exists('network_latest_posts') ) {
    	$parameters = array(
                  'title'=>'Testing NLPosts as a Function'
            );
    	network_latest_posts($parameters);
    }

    You can find the list of parameters here: Other Notes

    Cheers.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Network Latest Posts] using the plugin as a php include’ is closed to new replies.