.../themes/pub/wporg-developer/content-reference-archive.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-developer/content-reference-archive.php wordpress.org/public_html/wp-content/themes/pub/wporg-developer/content-reference-archive.php
index bc6d5f9b..26e7ad3e 100644
|
|
|
26 | 26 | ?> |
27 | 27 | <div class="meta"> |
28 | 28 | <?php printf( |
29 | | _n( 'Used by <a href="%s">1 function</a>', 'Used by <a href="%s">%d functions</a>', $used_by, 'wporg' ), |
| 29 | _n( 'Used by <a href="%1$s">1 function</a>', 'Used by <a href="%2$d"> functions</a>', $used_by, 'wporg' ), |
30 | 30 | esc_url( apply_filters( 'the_permalink', get_permalink() ) ) . '#usage', |
31 | 31 | $used_by |
32 | 32 | ); ?> |
33 | 33 | | |
34 | 34 | <?php printf( |
35 | | _n( 'Uses <a href="%s">1 function</a>', 'Uses <a href="%s">%d functions</a>', $uses, 'wporg' ), |
| 35 | _n( 'Uses <a href="%1$s">1 function</a>', 'Uses <a href="%2$d"> functions</a>', $uses, 'wporg' ), |
36 | 36 | esc_url( apply_filters( 'the_permalink', get_permalink() ) ) . '#usage', |
37 | 37 | $uses |
38 | 38 | ); ?> |