[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fV0LI74XYxGBhnESX6e6D2dKjcujgQuKYE0uGTkSavPM":3},{"slug":4,"display_name":5,"profile_url":6,"plugin_count":7,"total_installs":8,"avg_security_score":9,"avg_patch_time_days":10,"trust_score":11,"computed_at":12,"plugins":13},"palasthotel","Palasthotel GmbH","https:\u002F\u002Fprofiles.wordpress.org\u002Fpalasthotel\u002F",4,120,89,30,86,"2026-04-04T11:07:43.960Z",[14,39,58,71],{"slug":15,"name":16,"version":17,"author":5,"author_profile":6,"description":18,"short_description":19,"active_installs":20,"downloaded":21,"rating":22,"num_ratings":23,"last_updated":24,"tested_up_to":25,"requires_at_least":26,"requires_php":27,"tags":28,"homepage":27,"download_link":34,"security_score":35,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"responsive-oembed","Responsive oEmbed","1.4.1","\u003Cp>ATTENTION for WP Version 5+: This plugin does not work with Gutenberg (no problems with Classic Editor plugin though)! Gutenberg brings its own CSS for responsive oEmbed elements, so this plugin would double that and create strange effects.\u003C\u002Fp>\n\u003Cp>This plugin uses some minimal CSS rules and a wrapping HTML element to maintain the aspect ratio of oEmbed elements with fixed aspect ratio (e. g. YouTube, Vimeo or Soundcloud).\u003C\u002Fp>\n\u003Cp>Unlike other plugins, this plugin does not use any JavaScript!\u003C\u002Fp>\n\u003Cp>The aspect ratio is calculated from the (iframe, object or embed) HTML tag width and height attributes. An aspect ratio will only be applied, if both width AND height attributes are given by the oEmbed element and if there is no data-secret attribut set (because those are handled via wp-embed.js). Some oEmbeds have no width or height attributes set, because they calculate their dimension via JavaScript. In those cases this plugin has no effect.\u003C\u002Fp>\n\u003Cp>You can find a \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FEmbeds#Okay.2C_So_What_Sites_Can_I_Embed_From.3F\" rel=\"nofollow ugc\">list of all oEmbed sites supported by WordPress here\u003C\u002Fa>.\u003C\u002Fp>\n","Makes oEmbed elements with fixed aspect ratio (like YouTube, Vimeo or SoundCloud) scale responsively.",100,3340,74,3,"2019-03-03T12:43:00.000Z","5.1.22","4.0","",[29,30,31,32,33],"aspect-ratio","iframe","oembed","responsive","youtube","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fresponsive-oembed.1.4.1.zip",85,0,null,"2026-03-15T15:16:48.613Z",{"slug":40,"name":41,"version":42,"author":5,"author_profile":6,"description":43,"short_description":44,"active_installs":45,"downloaded":46,"rating":36,"num_ratings":36,"last_updated":47,"tested_up_to":48,"requires_at_least":49,"requires_php":50,"tags":51,"homepage":27,"download_link":57,"security_score":35,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"embed-javascript-file-content","Embed JavaScript File Content","1.0","\u003Cp>In some critical cases you cannot wait for a JavaScript file to load. Then you can benefit from better performance, if you embed the JavaScript code directly into the \u003Ccode>\u003Cscript>\u003C\u002Fcode> tag. This is where this plugin comes in: It provides a filter \u003Ccode>embed_javascript_file_content_handles\u003C\u002Fcode>, which takes JavaScript handles and echos their code content into the DOM instead of linking to a file.\u003C\u002Fp>\n\u003Cp>Please beware that placing lots of embedded JavaScript code can be critical! First you lose caching benefits and second the document size can increase easily. A general rule of thumb is that you should only consider JavaScript files for inline placement, which are critical and which have a file size lower than ~500 Bytes.\u003C\u002Fp>\n\u003Ch4>Example\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>add_action( 'wp_enqueue_scripts', 'my_scripts' );\nfunction my_scripts() {\n    \u002F\u002F Some critical script is enqueued\n    wp_enqueue_script( 'js-detection', get_template_directory_uri() . '\u002Fjs\u002Fjs-detection.js' );\n}\n\n\u002F**\n * Define JavaScript handles to be echoed inline in the html head section.\n *\u002F\nadd_filter( 'embed_javascript_file_content_handles', 'my_embed_javascript_file_content_handles' );\nfunction my_embed_javascript_file_content_handles( $handles ) {\n    $scripts = [ 'js-detection' ];\n\n    return array_merge( $handles, $scripts );\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Boosts performance of critical short JavaScript files by allowing to embed their code instead of linking to files. Script positions and extra scripts  &hellip;",10,1097,"2020-04-29T20:03:00.000Z","5.4.19","4.1","5.4",[52,53,54,55,56],"embed","enqueue","inline","javascript","scripts","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fembed-javascript-file-content.zip",{"slug":59,"name":60,"version":61,"author":5,"author_profile":6,"description":62,"short_description":63,"active_installs":45,"downloaded":64,"rating":65,"num_ratings":66,"last_updated":67,"tested_up_to":48,"requires_at_least":26,"requires_php":50,"tags":68,"homepage":27,"download_link":70,"security_score":35,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"inline-javascript-in-head","Inline JavaScript in Head","1.2.0","\u003Cp>\u003Cstrong>CAUTION\u003C\u002Fstrong>: This plugin is now deprecated! The successor plugin is \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fembed-javascript-file-content\u002F\" rel=\"ugc\">Embed JavaScript File Content\u003C\u002Fa>. The new plugin is rebuild from scratch and more rock solid: It respects order and position of scripts and extra scripts added via \u003Ccode>wp_add_inline_script\u003C\u002Fcode> or \u003Ccode>wp_localize_script\u003C\u002Fcode> don’t get lost. Give it a try!\u003C\u002Fp>\n\u003Cp>In some cases you cannot wait for a JavaScript file to load, even if it is placed early in the \u003Ccode>\u003Chead>\u003C\u002Fcode> section of your template. You can benefit from better performance, if you place the JavaScript code directly inside a \u003Ccode>\u003Cscript>\u003C\u002Fcode> tag into the header. This is where this plugin comes in: It provides a filter \u003Ccode>inline_javascript_in_head_handles\u003C\u002Fcode>, which takes JavaScript handles, dequeues those scripts and echos their code content inline into the head section instead of linking them via a script tag.\u003C\u002Fp>\n\u003Cp>Please beware that placing lots of JavaScript code inline in the \u003Ccode>\u003Chead>\u003C\u002Fcode> section can be critical! First you lose caching benefits and second the document size can increase easily. A general rule of thumb is that you should only consider JavaScript files for inline placement, which are critical and which have a file size lower than ~500 Bytes.\u003C\u002Fp>\n\u003Ch4>Example\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>add_action( 'wp_enqueue_scripts', 'my_scripts' );\nfunction my_scripts() {\n    \u002F\u002F Some critical script is enqueued\n    wp_enqueue_script( 'js-detection', get_template_directory_uri() . '\u002Fjs\u002Fjs-detection.js' );\n}\n\n\u002F**\n * Define JavaScript handles to be echoed inline in the html head section.\n *\u002F\nadd_filter( 'inline_javascript_in_head_handles', 'my_inline_javascript_in_head_handles', -20 );\nfunction my_inline_javascript_in_head_handles( $handles ) {\n    $scripts = [ 'js-detection' ];\n\n    return array_merge( $handles, $scripts );\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Boosts performance of critical short JavaScripts by placing their content directly into the HTML head.",1534,20,1,"2020-04-29T20:05:00.000Z",[53,69,54,55,56],"head","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Finline-javascript-in-head.1.2.0.zip",{"slug":72,"name":73,"version":42,"author":5,"author_profile":6,"description":74,"short_description":75,"active_installs":36,"downloaded":76,"rating":36,"num_ratings":36,"last_updated":27,"tested_up_to":77,"requires_at_least":26,"requires_php":27,"tags":78,"homepage":27,"download_link":83,"security_score":20,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":84},"postqueue-feeds","Postqueue Feeds","\u003Cp>This Plugin provides RSS-feeds for every given \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpostqueue\u002F\" title=\"Postqueue Plugin\" rel=\"ugc\">Postqueue\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Arbitrary section\u003C\u002Fh3>\n","Gives you feeds for Postqueues.",1088,"4.9.29",[79,80,81,82],"feeds","loop","postqueue","rss","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpostqueue-feeds.zip","2026-03-15T10:48:56.248Z"]