Is there an error in get_the_tag_list()?

There is a possibility, that this string has been already translated and WP is displaying the translation, which has another format. Try to pass a comma without a function, or take look at _x, where you can specify the context, you are translating. EDIT /** * Function fixes unknown issue of an unusual space in … Read more

How do I change the fonts in the Twenty Thirteen theme?

I looked at TwentyThirteen’s twentythirteen_fonts_url() function and there are no hooks so you need to deregister twentythirteen-fonts and enqueue your own fonts. Removing the fonts is easy: function deregister_gfonts_wpse_111190() { wp_deregister_style(‘twentythirteen-fonts’); } add_action(‘wp_enqueue_scripts’,’deregister_gfonts_wpse_111190′,100); Add your own Google fonts (or other) the same way that TwentyThirteen did. You will need to add another stylesheet to override … Read more

How to pass a numeric id to a page template?

In regard to WordPress post paged, I would use /player-12345 or other structure as url specific page rather than /player/12345. How to create new url structure for page Creating additional url structure, you need WP_Rewrite, there are a couple of filters that you can fire with your function. For Page, you can filter page_rewrite_rules. See … Read more