Palaniappan P

Results 6 issues of Palaniappan P

WordPress 3.6 has nice feature 'has_shortcode', using this we can load scripts when they called: https://codex.wordpress.org/Function_Reference/has_shortcode Example: function custom_shortcode_scripts() { global $post; if( has_shortcode( $post->post_content, 'videojs') ) { wp_enqueue_script( 'custom-script');...

Uncaught ValueError: Unknown format specifier "t" in `/custom-permalinks/admin/class-custom-permalinks-post-types-table.php:247`. This error comes when the post title has `%` symbol. Stack trace: ``` #0 /custom-permalinks/admin/class-custom-permalinks-post-types-table.php(247): sprintf() #1 /wp-admin/includes/class-wp-list-table.php(1554): Custom_Permalinks_Post_Types_Table->column_title() #2 /wp-admin/includes/class-wp-list-table.php(1499): WP_List_Table->single_row_columns()...

Recently updated to a new version of **TinyMCE 5**, after updating to the new version this plugin not working. Is anyone have a working sample for the new version?

**Please describe the problem** Laravel 11 released.

enhancement

The following message triggered when using php-cs-fixer v3. ``` Detected deprecations in use: - Rule "braces" is deprecated. Use "single_space_around_construct", "control_structure_braces", "control_structure_continuation_position", "declare_parentheses", "no_multiple_statements_per_line", "curly_braces_position", "statement_indentation" and "no_extra_blank_lines" instead. -...