-
-
Save tommcfarlin/63aa585541d72b0085f6028301716961 to your computer and use it in GitHub Desktop.
[WordPress] Tags Without Links 1.4.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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