Need help for WordPress coding standards
-
My plugin faced rejection due to specific reasons, and I’m seeking guidance on resolving these issues. According to WordPress standards, the use of multiple prefixes is discouraged. However, my plugin requires the inclusion of both WooCommerce and Elementor templates.
For instance:
- The WooCommerce cart template is incorporated into my plugin. It contains the “woocommerce_” prefix, which cannot be altered as it is a standard WooCommerce template. An example action hook is:
do_action( 'woocommerce_before_cart_contents' );
- In the canvas widget template, we’ve utilized an Elementor hook, enabling the application of filters. Here’s an example of an Elementor hook in use:
do_action('elementor/page_templates/canvas/before_content');
I appreciate any guidance on how to address these issues effectively.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Need help for WordPress coding standards’ is closed to new replies.