Guest User

Untitled

a guest
Oct 17th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?php
  2. function keyword_shortcode($atts, $content = null) {
  3. $custom_factions = array("Chapter", "Legion", "Regiment", "Craftworld", "Masque", "Clan", "Order", "Sept", "Hive Fleet", "Dynasty", "Kabal", "Haemonculus Coven", "Wych Cult", "Ordo");
  4. if (!empty($content)) {
  5. $titlecased_content = ucwords(strtolower($content));
  6. if (in_array($titlecased_content, $custom_factions)) {
  7. return '<span style="font-variant: small-caps; font-weight: bold;"><' . $titlecased_content . '></span>';
  8. } else {
  9. return '<span style="font-variant: small-caps; font-weight: bold;">' . $titlecased_content . '</span>';
  10. }
  11. } else {
  12. return '';
  13. }
  14. }
  15. add_shortcode('kw', 'keyword_shortcode');
  16. ?>
Add Comment
Please, Sign In to add comment