コード例 #1
0
ファイル: kncockoff.php プロジェクト: programermaster/wp_demo
function hello_dolly($input)
{
    $chosen = hello_dolly_get_lyric();
    return $input . "<p id='dolly'>{$chosen}</p>";
}
コード例 #2
0
function hello_dolly()
{
    $chosen = hello_dolly_get_lyric();
    echo "<p id='dolly'>{$chosen}</p>";
}
コード例 #3
0
 /**
  * Use the search endpoint to get a list of recent articles that were published
  * @return array    Published articles
  */
 public function rest_get_lyric($request)
 {
     return hello_dolly_get_lyric();
 }