PluginProbe
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms / trunk
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms vtrunk
3.53.0 3.52.0 3.51.0 3.50.0 3.45.0 3.38.0 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.40.0 3.40.1 3.41.0 3.42.0 3.43.0 3.44.0 3.5.0 3.5.1 3.5.2 3.5.3 3.6.0 3.6.1 3.6.2 All 177 releases
simple-tags / inc / functions.deprecated.php

functions.deprecated.php in Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms trunk, at inc/functions.deprecated.php

68 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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