| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Deprecated - Generate meta keywords for HTML header |
| 5 |
* |
| 6 |
* @return string |
| 7 |
*/ |
| 8 |
function st_get_meta_keywords() |
| 9 |
{ |
| 10 |
return ''; |
| 11 |
} |
| 12 |
|
| 13 |
/** |
| 14 |
* Deprecated - Display meta keywords for HTML header |
| 15 |
* |
| 16 |
*/ |
| 17 |
function st_meta_keywords() |
| 18 |
{ |
| 19 |
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 20 |
echo st_get_meta_keywords(); |
| 21 |
} |
| 22 |
|
| 23 |
/** |
| 24 |
* Deprecated - Display related tags |
| 25 |
* |
| 26 |
* @param string $args |
| 27 |
*/ |
| 28 |
function st_related_tags($args = '') |
| 29 |
{ |
| 30 |
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 31 |
echo st_get_related_tags($args); |
| 32 |
} |
| 33 |
|
| 34 |
/** |
| 35 |
* Deprecated - Get related tags |
| 36 |
* |
| 37 |
* @param string $args |
| 38 |
* |
| 39 |
* @return string|array |
| 40 |
*/ |
| 41 |
function st_get_related_tags($args = '') |
| 42 |
{ |
| 43 |
return ''; |
| 44 |
} |
| 45 |
|
| 46 |
/** |
| 47 |
* Deprecated - Display remove related tags |
| 48 |
* |
| 49 |
* @param string $args |
| 50 |
*/ |
| 51 |
function st_remove_related_tags($args = '') |
| 52 |
{ |
| 53 |
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 54 |
echo st_get_remove_related_tags($args); |
| 55 |
} |
| 56 |
|
| 57 |
/** |
| 58 |
* Deprecated - Get remove related tags |
| 59 |
* |
| 60 |
* @param string $args |
| 61 |
* |
| 62 |
* @return string|array |
| 63 |
*/ |
| 64 |
function st_get_remove_related_tags($args = '') |
| 65 |
{ |
| 66 |
return ''; |
| 67 |
} |
| 68 |
|