Function __global->send_trackbacks

Definitions

sources/feedback2.php

  • Send a trackback to somebody else's website.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: bool

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$_urls string No No required parameter N/A N/A A comma-separated list of URLs to which we should trackback
$title string No No required parameter N/A N/A The article title
$excerpt string No No required parameter N/A N/A The excerpt to send

Returns

  • Success?
  • Type: boolean
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Send a trackback to somebody else's website.
 *
 * @param  string $_urls A comma-separated list of URLs to which we should trackback
 * @param  string $title The article title
 * @param  string $excerpt The excerpt to send
 * @return boolean Success?
 */

function send_trackbacks(string $_urls, string $title, string $excerpt) : bool