Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Last active January 10, 2019 15:33
Show Gist options
  • Select an option

  • Save tommcfarlin/63aa585541d72b0085f6028301716961 to your computer and use it in GitHub Desktop.

Select an option

Save tommcfarlin/63aa585541d72b0085f6028301716961 to your computer and use it in GitHub Desktop.
[WordPress] Tags Without Links 1.4.0
<?php
use TomMcFarlin\TagsWithoutLinks;
/*
* Other code here that you may have in your plugin.
*/
$tagsWithoutLinks = new TagsWithoutLinks(' | ');
// Print the unlinked tags.
$tagsWithoutLinks->display();
// Retrieve the string of unlinked tags.
$result = $tagsWithoutLinks->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment