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

57 lines 910 B
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 echo st_get_meta_keywords();
17 }
18
19 /**
20 * Deprecated - Display related tags
21 *
22 * @param string $args
23 */
24 function st_related_tags( $args = '' ) {
25 echo st_get_related_tags( $args );
26 }
27
28 /**
29 * Deprecated - Get related tags
30 *
31 * @param string $args
32 *
33 * @return string|array
34 */
35 function st_get_related_tags( $args = '' ) {
36 return '';
37 }
38
39 /**
40 * Deprecated - Display remove related tags
41 *
42 * @param string $args
43 */
44 function st_remove_related_tags( $args = '' ) {
45 echo st_get_remove_related_tags( $args );
46 }
47
48 /**
49 * Deprecated - Get remove related tags
50 *
51 * @param string $args
52 *
53 * @return string|array
54 */
55 function st_get_remove_related_tags( $args = '' ) {
56 return '';
57 }