wordpress-theme-boilerplate icon indicating copy to clipboard operation
wordpress-theme-boilerplate copied to clipboard

Funkhaus programming style guide and WordPress template theme.

Results 6 wordpress-theme-boilerplate issues
Sort by recently updated
recently updated
newest added

https://github.com/funkhaus/style-guide/blob/25589fd19602281f86933aa86a84acfb04f24460/template/functions.php#L506-L537 Why did this get changed? If I have a title as `Nike "Training Club - Yoga"` it doesn't return anything now. What was wrong with the old way? @SaFrMo...

The site I'm working on now needs JS to run if the user resizes past certain breakpoints, and so have a couple other sites I've worked on. Should we add...

question

Here are some things I need to clean up: - [ ] Remove inline arrays from second image function (use `$args`). - [x] Remove use of global in meta box...

``` add_filter( 'embed_defaults', 'modify_embed_defaults' ); function modify_embed_defaults() { return array( 'width' => 750, 'height' => 375 ); } ``` https://codex.wordpress.org/Plugin_API/Filter_Reference/embed_defaults

All templates have this at the top of them: ``` if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } ``` We should remove them...

enhancement

I think we should make a `archive-product.php` have a conditional for a `template-store-front-page.php` file. Something like this: ``` There are no products within the current filter. ``` Or perhaps we...

enhancement
woocommerce