[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$f8LNag0JRs1GYeLlKLe2SnMa0cxmA4UX-VN0Nqx6HYHU":3},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":13,"last_updated":14,"tested_up_to":15,"requires_at_least":16,"requires_php":7,"tags":17,"homepage":21,"download_link":22,"security_score":23,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":25,"vulnerabilities":26,"developer":27,"crawl_stats":24,"alternatives":34,"analysis":138,"fingerprints":253},"wp-post-background","WP Post Background","1.0.0","","https:\u002F\u002Fprofiles.wordpress.org\u002Fjcchavezs\u002F","\u003Cp>This plugin allows you to add and image as background of posts, pages or custom post type in general (in the same way as a thumbnail).\u003C\u002Fp>\n\u003Cul>\n\u003Cli>This is a rewrite of my old plugin \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpost-background\u002F\" rel=\"ugc\">Post Background\u003C\u002Fa> which I do not have access anymore. *\u003C\u002Fli>\n\u003C\u002Ful>\n","This plugin allows you to add and image as background of posts, pages or custom post type in general (in the same way as a thumbnail).",20,3457,0,"2015-05-16T15:13:00.000Z","4.2.39","3.0",[18,19,20],"attachment","background","post","https:\u002F\u002Fgithub.com\u002Fjcchavezs\u002Fwp-post-background","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-post-background.zip",85,null,"2026-03-15T15:16:48.613Z",[],{"slug":28,"display_name":28,"profile_url":8,"plugin_count":29,"total_installs":30,"avg_security_score":23,"avg_patch_time_days":31,"trust_score":32,"computed_at":33},"jcchavezs",2,220,30,84,"2026-04-04T11:38:02.004Z",[35,56,79,100,117],{"slug":36,"name":37,"version":38,"author":39,"author_profile":40,"description":41,"short_description":42,"active_installs":43,"downloaded":44,"rating":45,"num_ratings":46,"last_updated":47,"tested_up_to":48,"requires_at_least":16,"requires_php":7,"tags":49,"homepage":53,"download_link":54,"security_score":55,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":25},"attachments","Attachments","3.5.11","Jon Christopher","https:\u002F\u002Fprofiles.wordpress.org\u002Fjchristopher\u002F","\u003Cp>\u003Cstrong>Extensive\u003C\u002Fstrong> usage instructions are \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fjchristopher\u002Fattachments\u002F#attachments\" rel=\"nofollow ugc\">available on GitHub\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Attachments allows you to simply append any number of items from your WordPress Media Library to Posts, Pages, and Custom Post Types.\u003C\u002Fp>\n\u003Ch4>Associate Media items with posts\u003C\u002Fh4>\n\u003Cp>The idea behind Attachments is to give developers the ability to directly associate Media items with any post. This is accomplished by adding a meta box to post edit screens as determined by the developer. Once Media items have been associated with a post, you’re able to retrieve those Attachments and include them directly within your template files using any specific markup you wish.\u003C\u002Fp>\n\u003Ch4>Integrate Attachments within your theme with fine grained control\u003C\u002Fh4>\n\u003Cp>\u003Cstrong>Attachments does not automatically integrate itself with your theme.\u003C\u002Fstrong> Since the idea behind Attachments is to allow integration of Media within posts using developer-crafted, unique markup, \u003Cem>it’s up to you to integrate with your theme\u003C\u002Fem>. The most basic integration includes editing the \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FTemplate_Hierarchy\" rel=\"nofollow ugc\">appropriate template file\u003C\u002Fa> and adding your call(s) to Attachments. For example, if you have set up Attachments to be used with your Posts entries, edit \u003Ccode>single.php\u003C\u002Fcode> to include the following within The Loop:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php $attachments = new Attachments( 'attachments' ); \u002F* pass the instance name *\u002F ?>\n\u003C?php if( $attachments->exist() ) : ?>\n  \u003Ch3>Attachments\u003C\u002Fh3>\n  \u003Cp>Total Attachments: \u003C?php echo $attachments->total(); ?>\u003C\u002Fp>\n  \u003Cul>\n    \u003C?php while( $attachments->get() ) : ?>\n      \u003Cli>\n        ID: \u003C?php echo $attachments->id(); ?>\u003Cbr \u002F>\n        Type: \u003C?php echo $attachments->type(); ?>\u003Cbr \u002F>\n        Subtype: \u003C?php echo $attachments->subtype(); ?>\u003Cbr \u002F>\n        URL: \u003C?php echo $attachments->url(); ?>\u003Cbr \u002F>\n        Image: \u003C?php echo $attachments->image( 'thumbnail' ); ?>\u003Cbr \u002F>\n        Source: \u003C?php echo $attachments->src( 'full' ); ?>\u003Cbr \u002F>\n        Size: \u003C?php echo $attachments->filesize(); ?>\u003Cbr \u002F>\n        Title Field: \u003C?php echo $attachments->field( 'title' ); ?>\u003Cbr \u002F>\n        Caption Field: \u003C?php echo $attachments->field( 'caption' ); ?>\n      \u003C\u002Fli>\n    \u003C?php endwhile; ?>\n  \u003C\u002Ful>\n\u003C?php endif; ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>That snippet will request all of the existing Attachments defined for the current Post within The Loop, and retrieve each itemized property for that Attachment. Using the provided details you’re able to integrate the attached Media items in any way you please.\u003C\u002Fp>\n\u003Cp>There is a lot more information on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fjchristopher\u002Fattachments\" rel=\"nofollow ugc\">Attachments’ GitHub page\u003C\u002Fa>. Please contribute!\u003C\u002Fp>\n\u003Ch3>Roadmap\u003C\u002Fh3>\n\u003Cp>Please see \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fjchristopher\u002Fattachments\u002Fblob\u002Fmaster\u002Fdocs\u002Froadmap.md\" rel=\"nofollow ugc\">Attachments on GitHub\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Usage\u003C\u002Fh3>\n\u003Cp>\u003Cstrong>Extensive\u003C\u002Fstrong> usage instructions are \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fjchristopher\u002Fattachments\u002Fblob\u002Fmaster\u002Fdocs\u002Fusage.md\" rel=\"nofollow ugc\">available on GitHub\u003C\u002Fa>\u003C\u002Fp>\n","Attachments allows you to simply append any number of items from your WordPress Media Library to Posts, Pages, and Custom Post Types",9000,281160,96,53,"2025-12-30T15:11:00.000Z","6.9.4",[18,50,51,52,20],"page","pdf","picture","https:\u002F\u002Fgithub.com\u002Fjchristopher\u002Fattachments","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fattachments.3.5.11.zip",100,{"slug":57,"name":58,"version":59,"author":60,"author_profile":61,"description":62,"short_description":63,"active_installs":64,"downloaded":65,"rating":66,"num_ratings":67,"last_updated":68,"tested_up_to":69,"requires_at_least":70,"requires_php":7,"tags":71,"homepage":77,"download_link":78,"security_score":23,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":25},"fully-background-manager","Full Background Manager","2.1","Perception System System Pvt. Ltd.","https:\u002F\u002Fprofiles.wordpress.org\u002Fuvesh123\u002F","\u003Cp>A full background manager WordPress plugin allows users to set different background images on each page. Being a free and feature-rich plugin, it delivers an incredible experience to users by allowing them to set images to the background of the body.\u003C\u002Fp>\n\u003Cp>The company developed this full-fledged plugin for all the WordPress users, who wanted to give different look on the each page of their website as it has capability to change the entire look, feel and touch of your website within just few seconds.Moreover, users of plugin are also allowed to set the background color, background Layout and background image as per their ease.\u003C\u002Fp>\n\u003Cp>One of the best things about this plugin is that it comes with lots of features that will surely give a wonderful experience that you ever get with any other plugin. Moreover, it also allows you to set images as per your convenience like in the fixed, middle, right, left, stretch and more. However, it is a page WordPress plugin, not a post plugin, so users need to make sure it while downloading it.\u003C\u002Fp>\n\u003Cp>To update the version of this plugin, the company has done lots of changes in the coding part of it and various bugs have been solved as well.Therefore, users will not get any problem while using this plugin in their website as it brings numerous new options like background Layout and background image\u003C\u002Fp>\n\u003Cp>Imp Note – While updating this new version of the plugin, you should make sure to take all back-up of your website with database so that you will not face any problem in near future.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>How to Install Full Background Manager WordPress Plugin?\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>First of all, you need to download the plugin and install it in your website.\u003C\u002Fli>\n\u003Cli>Now, you can activate and go the page in WordPress admin.\u003C\u002Fli>\n\u003Cli>After this, you can find the meta box its name like Full Background Manager at last the of every page in admin section.\u003C\u002Fli>\n\u003Cli>Now, you have to upload an image by just clicking on the ‘Choose Image’.\u003C\u002Fli>\n\u003Cli>After uploading image you can see one dropdown to set background postion of page.\u003C\u002Fli>\n\u003Cli>At last, you just need to publish the page and you will get the image in the background of the page.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>So, these were simple steps that you can follow to install this plugin on your website and successfully change the background of each pageYou can also check-out the demo of this plugin in order to get its view. \u003Ca href=\"http:\u002F\u002F115.112.143.25\u002FCMS\u002Fwp\u002Ffully-background-manager\" rel=\"nofollow ugc\">Click here \u003C\u002Fa> to check-out the demo of this plugin.\u003Cbr \u002F>\nPerception System offers this user-friendly and highly flexible plugin to enable you to give your website’s each page a refreshing look that you desire. Additionally, the company also provides various other products for its precious customers. To know more about the other products of the company, you can\u003Cbr \u002F>\nhttp:\u002F\u002Fwww.store.perceptionsystem.com\u003C\u002Fp>\n","Full Background Image Manager WordPress Plugin allows you to set separate background image of each page.",8000,172303,68,22,"2023-02-08T09:58:00.000Z","6.1.10","3.6",[72,73,74,75,76],"background-image","background-manager","different-background-per-pagepost","full-background-image","page-background","http:\u002F\u002Fwww.perceptionsystem.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffully-background-manager.zip",{"slug":80,"name":81,"version":82,"author":83,"author_profile":84,"description":85,"short_description":86,"active_installs":87,"downloaded":88,"rating":89,"num_ratings":90,"last_updated":91,"tested_up_to":92,"requires_at_least":93,"requires_php":94,"tags":95,"homepage":97,"download_link":98,"security_score":32,"vuln_count":29,"unpatched_count":13,"last_vuln_date":99,"fetched_at":25},"dx-delete-attached-media","DX Delete Attached Media","2.0.6","Mario Peshev","https:\u002F\u002Fprofiles.wordpress.org\u002Fnofearinc\u002F","\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fx51scLO71U0?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\n\u003Cp>DX Delete Attached Media deletes all of the attached media files to your posts once they get deleted from the system. The standard core behavior deletes posts alone without taking care of related images. Now you can maintain your install and get rid of all solo attachments getting into your posts via the Media button and used nowhere else.\u003C\u002Fp>\n\u003Cp>\u003Cem>The plugin works with WooCommerce and Easy Digital Downloads.\u003C\u002Fem>\u003C\u002Fp>\n","Automatically deletes attached media from posts and custom post types added via the Media button.",4000,54695,98,28,"2023-12-19T08:51:00.000Z","6.3.8","4.5","7.4",[18,96,20],"media","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fdx-delete-attached-media\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdx-delete-attached-media.2.0.6.zip","2023-10-16 00:00:00",{"slug":101,"name":102,"version":103,"author":104,"author_profile":105,"description":106,"short_description":107,"active_installs":108,"downloaded":109,"rating":55,"num_ratings":110,"last_updated":111,"tested_up_to":92,"requires_at_least":112,"requires_php":94,"tags":113,"homepage":115,"download_link":116,"security_score":23,"vuln_count":13,"unpatched_count":13,"last_vuln_date":24,"fetched_at":25},"autoremove-attachments","Autoremove Attachments","1.3.1","Polygon Themes","https:\u002F\u002Fprofiles.wordpress.org\u002Fpolygonthemes\u002F","\u003Cp>Autoremove Attachments helps you keep the Media Library clean by deleting all media files attached as child attachments to a post, page, or custom post type when the parent is deleted.\u003C\u002Fp>\n\u003Cp>By default, when you delete content from your website, regardless if it’s a post, a page, a product, or any kind of post type, WordPress keeps the media files previously associated with it, even if after the removal of your content they are not used anywhere else.\u003C\u002Fp>\n\u003Cp>Autoremove Attachments tries to solve this problem by automating the removal of all media files that have a child-parent relationship with the removed content. (so you don’t have to manually track and remove orphan files left on your server)\u003C\u002Fp>\n\u003Ch3>Important Considerations\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>A soft delete that places your post, page, or custom post type in Trash will not trigger the removal of its child attachments. The purge happens when you empty your trash.\u003C\u002Fli>\n\u003Cli>When you delete a post, page or custom post type, we try to determine if its child attachments are used anywhere else on your website. If they are, we do not remove them, to prevent broken links.\u003C\u002Fli>\n\u003Cli>The additional checks before the automatic removal can be disabled from the Media Settings for improved performance on large websites with thousands of posts and media files.\u003C\u002Fli>\n\u003Cli>The plugin only removes files tracked by WordPress. Some poorly coded themes generate additional thumbnail sizes that are not tracked by WordPress and this always leads to orphan files left on your server.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Compatibility and Third-Party Support\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwoocommerce\" rel=\"ugc\">WooCommerce\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Feasy-digital-downloads\" rel=\"ugc\">Easy Digital Downloads\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>All themes and plugins that do things the WordPress way\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>If you use a plugin to optimize and clean your database of revisions, trashed posts, etc, make sure you use one that relies on native WordPress functions to perform the maintenance tasks. We recommend \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-sweep\" rel=\"ugc\">WP-Sweep\u003C\u002Fa>.\u003C\u002Fp>\n","Remove child attachments when parent post, page or custom post type is deleted.",3000,34470,15,"2023-08-12T00:30:00.000Z","5.8",[18,114,96,50,20],"custom-post-type","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fautoremove-attachments","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fautoremove-attachments.zip",{"slug":118,"name":119,"version":120,"author":121,"author_profile":122,"description":123,"short_description":124,"active_installs":125,"downloaded":126,"rating":32,"num_ratings":127,"last_updated":128,"tested_up_to":129,"requires_at_least":130,"requires_php":7,"tags":131,"homepage":134,"download_link":135,"security_score":136,"vuln_count":29,"unpatched_count":13,"last_vuln_date":137,"fetched_at":25},"lh-add-media-from-url","LH Add Media From Url","1.30","shawfactor","https:\u002F\u002Fprofiles.wordpress.org\u002Fshawfactor\u002F","\u003Cp>This plugin allow you to grab image from remote url and save into your own word press media library. By doing so, you never worried if the remote image was removed by its owner. This also save you steps to download the image to local computer and upload again to your own WordPress. There is also a JavaScript bookmarklet that helps to automate the process if you are surfing the internet and find something you would like to add to the library\u003C\u002Fp>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Automatically downloads and adds the file to the media library.\u003C\u002Fli>\n\u003Cli>After the uploading is successful, you are redirected to the edit screen\u003C\u002Fli>\n\u003Cli>Once the bookmarklet is installed you don’t even need to copy and paste a url (just navigate to the url and select the bookmark).\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Like this plugin? Please consider \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fview\u002Fplugin-reviews\u002Flh-add-media-from-url\u002F\" rel=\"ugc\">leaving a 5-star review\u003C\u002Fa>.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Love this plugin or want to help the LocalHero Project? Please consider \u003Ca href=\"https:\u002F\u002Flhero.org\u002Fportfolio\u002Flh-add-media-from-url\u002F\" rel=\"nofollow ugc\">making a donation\u003C\u002Fa>.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch3>Translation credits\u003C\u002Fh3>\n","Upload files from an url to wordpress media library, either enter file urls in an onsite input box or click a bookmarklet.",2000,37732,9,"2024-08-20T14:07:00.000Z","6.6.5","5.0",[18,132,133,96,20],"bookmarklet","download","https:\u002F\u002Flhero.org\u002Fportfolio\u002Flh-add-media-from-url\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Flh-add-media-from-url.zip",91,"2024-08-20 17:25:05",{"attackSurface":139,"codeSignals":171,"taintFlows":198,"riskAssessment":238,"analyzedAt":252},{"hooks":140,"ajaxHandlers":160,"restRoutes":168,"shortcodes":169,"cronEvents":170,"entryPointCount":29,"unprotectedCount":29},[141,147,151,154],{"type":142,"name":143,"callback":144,"file":145,"line":146},"action","plugins_loaded","wppb_load_textdomain","wp-post-background.php",14,{"type":142,"name":148,"callback":149,"file":145,"line":150},"admin_init","wppb_admin_init",25,{"type":142,"name":152,"callback":153,"file":145,"line":136},"admin_head","wppb_admin_enqueue_scripts",{"type":155,"name":156,"callback":157,"priority":158,"file":145,"line":159},"filter","attachment_fields_to_edit","wppb_attachment_fields_to_edit",999,102,[161,165],{"action":162,"nopriv":163,"callback":162,"hasNonce":163,"hasCapCheck":163,"file":145,"line":164},"wppb_add_post_background",false,134,{"action":166,"nopriv":163,"callback":166,"hasNonce":163,"hasCapCheck":163,"file":145,"line":167},"wppb_remove_post_background",164,[],[],[],{"dangerousFunctions":172,"sqlUsage":173,"outputEscaping":175,"fileOperations":13,"externalRequests":13,"nonceChecks":196,"capabilityChecks":13,"bundledLibraries":197},[],{"prepared":13,"raw":13,"locations":174},[],{"escaped":13,"rawEcho":176,"locations":177},11,[178,181,182,183,184,186,188,189,191,192,194],{"file":145,"line":179,"context":180},83,"raw output",{"file":145,"line":179,"context":180},{"file":145,"line":32,"context":180},{"file":145,"line":32,"context":180},{"file":145,"line":185,"context":180},86,{"file":145,"line":187,"context":180},158,{"file":145,"line":187,"context":180},{"file":145,"line":190,"context":180},159,{"file":145,"line":190,"context":180},{"file":145,"line":193,"context":180},181,{"file":145,"line":195,"context":180},221,1,[],[199,217,227],{"entryPoint":200,"graph":201,"unsanitizedCount":215,"severity":216},"wppb_add_post_background (wp-post-background.php:139)",{"nodes":202,"edges":213},[203,208],{"id":204,"type":205,"label":206,"file":145,"line":207},"n0","source","$_POST (x4)",141,{"id":209,"type":210,"label":211,"file":145,"line":187,"wp_function":212},"n1","sink","echo() [XSS]","echo",[214],{"from":204,"to":209,"sanitized":163},4,"medium",{"entryPoint":218,"graph":219,"unsanitizedCount":196,"severity":216},"wppb_remove_post_background (wp-post-background.php:170)",{"nodes":220,"edges":225},[221,224],{"id":204,"type":205,"label":222,"file":145,"line":223},"$_POST",172,{"id":209,"type":210,"label":211,"file":145,"line":193,"wp_function":212},[226],{"from":204,"to":209,"sanitized":163},{"entryPoint":228,"graph":229,"unsanitizedCount":13,"severity":237},"\u003Cwp-post-background> (wp-post-background.php:0)",{"nodes":230,"edges":234},[231,233],{"id":204,"type":205,"label":232,"file":145,"line":207},"$_POST (x5)",{"id":209,"type":210,"label":211,"file":145,"line":187,"wp_function":212},[235],{"from":204,"to":209,"sanitized":236},true,"low",{"summary":239,"deductions":240},"The wp-post-background plugin v1.0.0 exhibits a concerning security posture due to significant vulnerabilities in its handling of entry points. While it demonstrates good practices with SQL queries using prepared statements and a lack of file operations or external HTTP requests, these strengths are overshadowed by critical weaknesses. The plugin exposes two AJAX handlers without any authentication or capability checks, creating a substantial attack surface that could be exploited by unauthenticated users. Furthermore, the taint analysis reveals two flows with unsanitized paths, indicating potential for data injection or manipulation if user-controlled input reaches these paths without proper sanitization. The absence of any known CVEs is positive but does not negate the inherent risks present in the code itself. The plugin needs immediate attention to address the unprotected entry points and unsanitized data flows to improve its overall security.",[241,244,246,249],{"reason":242,"points":243},"AJAX handlers without authentication checks",10,{"reason":245,"points":243},"Flows with unsanitized paths",{"reason":247,"points":248},"Unescaped output",7,{"reason":250,"points":251},"Missing capability checks on AJAX",5,"2026-03-16T22:47:28.361Z",{"wat":254,"direct":261},{"assetPaths":255,"generatorPatterns":257,"scriptPaths":258,"versionParams":259},[256],"\u002Fwp-content\u002Fplugins\u002Fwp-post-background\u002Fwp-post-background.js",[],[256],[260],"wp-post-background\u002Fwp-post-background.js?ver=",{"cssClasses":262,"htmlComments":263,"htmlAttributes":264,"restEndpoints":268,"jsGlobals":269,"shortcodeOutput":272},[4],[],[265,266,267],"id=\"wp-post-background-","id=\"remove-post-background\"","id=\"set-post-background\"",[],[270,271],"WPPBRemoveBackground","WPPBSetAsBackground",[]]