PluginProbe
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms / 3.4.5
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms v3.4.5
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 3.4.5, at inc/functions.deprecated.php

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