TwentyFourteen Theme : Changing grid layout

Figured this out – had to change the container to hold image widths of 24.9% or 50% depending on layout, remove the clear from both post divs and stretch the .site width to 100%. From there I had either 4 horizontal images or two x two set-up. If anyone has any questions about this feel … Read more

All custom links suddenly lack href attributes

I think this is likely due to the issue of the core upgrade to jQuery 1.12. Check out this page. In the core discussion yesterday it was the highest priority and decided that it relies on the theme developers, and the users to update. Please take a look at that link, it is extremely helpful. … Read more

How to get dynamic template-function generated CSS into HEAD?

If you use wp_enqueue_style(), with your function, you could call the function from the page (single.php etc.) … pass a string through with the page name, use that in the function to decide which style you are enqueuing. This will then load the script in the head in the correct manner. https://developer.wordpress.org/reference/functions/wp_enqueue_style/ Eg. // In … Read more