[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fD6V_Pi-nZBnlJd4-VvHRK0ZBWktWvXhi5g3_YRzladA":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},"presswell","Presswell","https:\u002F\u002Fprofiles.wordpress.org\u002Fpresswell\u002F",2,110,93,30,89,"2026-04-05T00:03:45.583Z",[14,37],{"slug":15,"name":16,"version":17,"author":5,"author_profile":6,"description":18,"short_description":19,"active_installs":20,"downloaded":21,"rating":20,"num_ratings":7,"last_updated":22,"tested_up_to":23,"requires_at_least":24,"requires_php":25,"tags":26,"homepage":32,"download_link":33,"security_score":20,"vuln_count":34,"unpatched_count":34,"last_vuln_date":35,"fetched_at":36},"presswell-art-direction","Presswell Art Direction","1.1.12","\u003Cp>Presswell Art Direction helps simplify how custom image thumbnail sizes are defined, cropped, and generated.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Features\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Control image cropping with hot-spots\u003C\u002Fli>\n\u003Cli>Select custom image sizes in the WordPress editor\u003C\u002Fli>\n\u003Cli>Dynamically generate image thumbnails\u003C\u002Fli>\n\u003Cli>Delete all cached thumbnails\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>\u003Cem>Image Cropping\u003C\u002Fem>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Presswell Art Direction adds the ability to set a focal point hot-spot for all images in the media library for fine grain cropping control. Simply identify where the subject of the photo is and the plugin will crop all custom image thumbnails to ensure it stays in frame.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>\u003Cem>Thumbnail Sizes\u003C\u002Fem>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Presswell Art Direction adds an easy to use interface for defining and editing custom image thumbnail sizes. Custom image sizes will be available for selection when inserting images in the post editor.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>\u003Cem>Dynamic Images\u003C\u002Fem>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Presswell Art Direction prevents custom image sizes from being generated automatically. Only standard WordPress thumbnails will be generated when a new image is uploaded. All other image sizes will be dynamically generated when called via code or requested via URL, saving server space when many custom image sizes are defined. Note: URL based image generation requires that \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FUsing_Permalinks\" rel=\"nofollow ugc\">pretty permalinks\u003C\u002Fa> are enabled.\u003C\u002Fp>\n\u003Ch4>Documentation\u003C\u002Fh4>\n\u003Cp>\u003Cstrong>pwad_add_image_size( $args )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>$args\u003C\u002Fstrong> (array) (required) – Keyed array containing \u003Ccode>name\u003C\u002Fcode>, \u003Ccode>key\u003C\u002Fcode>, \u003Ccode>height\u003C\u002Fcode>, \u003Ccode>width\u003C\u002Fcode>, and optionally \u003Ccode>thumbnails\u003C\u002Fcode> values; Thumbnail keys are prefixed with parent’s key like ‘[size]-[thumbnail]’\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>pwad_add_image_size( array(\n  'name' => 'Square',\n  'key' => 'square',\n  'width' => '1200',\n  'height' => '1200',\n  'thumbnails' => array(\n    array(\n      'name' => 'Medium',\n      'key' => 'medium',\n      'width' => '800',\n      'height' => '800',\n    ),\n    array(\n      'name' => 'Small',\n      'key' => 'small',\n      'width' => '400',\n      'height' => '400',\n    ),\n  ),\n) );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>pwad_get_image( $attachment_ID, $size_key, $thumbnail_key )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>$attachment_ID\u003C\u002Fstrong> (int) (required) – ID of image attachment\u003C\u002Fli>\n\u003Cli>\u003Cstrong>$size_key\u003C\u002Fstrong> (string) (required) – Image size identifier; Overload using ‘[size]-[thumbnail]’ pattern\u003C\u002Fli>\n\u003Cli>\u003Cstrong>$thumbnail_key\u003C\u002Fstrong> (string) (required) – Image size thumbnail identifier\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Returns an image tag.\u003C\u002Fp>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$square_large = pwad_get_image( $img_ID, 'square' );\n$square_medium = pwad_get_image( $img_ID, 'square', 'medium' );\n$square_small = pwad_get_image( $img_ID, 'square-small' ); \u002F\u002F Overloaded\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>pwad_get_image_src( $attachment_ID, $size_key, $thumbnail_key )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>$attachment_ID\u003C\u002Fstrong> (int) (required) – ID of image attachment\u003C\u002Fli>\n\u003Cli>\u003Cstrong>$size_key\u003C\u002Fstrong> (string) (required) – Image size identifier; Overload using ‘[size]-[thumbnail]’ pattern\u003C\u002Fli>\n\u003Cli>\u003Cstrong>$thumbnail_key\u003C\u002Fstrong> (string) (required) – Image size thumbnail identifier\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Returns a keyed array containing the \u003Ccode>file\u003C\u002Fcode>, \u003Ccode>url\u003C\u002Fcode>, \u003Ccode>path\u003C\u002Fcode>, \u003Ccode>height\u003C\u002Fcode>, \u003Ccode>width\u003C\u002Fcode>, and \u003Ccode>mime-type\u003C\u002Fcode> values.\u003C\u002Fp>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$square_large = pwad_get_image_src( $img_ID, 'square' );\n$square_medium = pwad_get_image_src( $img_ID, 'square', 'medium' );\n$square_small = pwad_get_image_src( $img_ID, 'square-small' ); \u002F\u002F Overloaded\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Control how custom image thumbnail sizes are defined, cropped, and generated.",100,4571,"2025-11-10T20:29:00.000Z","6.4.8","4.0","",[27,28,29,30,31],"crop","image","images","picture","thumbnail","http:\u002F\u002Fwordpress.org\u002Fplugins\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpresswell-art-direction.zip",0,null,"2026-03-15T15:16:48.613Z",{"slug":38,"name":39,"version":40,"author":5,"author_profile":6,"description":41,"short_description":42,"active_installs":43,"downloaded":44,"rating":34,"num_ratings":34,"last_updated":45,"tested_up_to":46,"requires_at_least":24,"requires_php":25,"tags":47,"homepage":53,"download_link":54,"security_score":55,"vuln_count":34,"unpatched_count":34,"last_vuln_date":35,"fetched_at":36},"presswell-publication-schedule","Presswell Publication Schedule","1.0.2","\u003Cp>Presswell Publication Schedule adds precise, automated control over how often new posts are published, and is the perfect solution for ensuring a consistent editorial calendar. Simply configure the days and times when posts should be published and new posts will be automatically scheduled for the next available time slot.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Features\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Automatically schedule posts based on simple day and time rules\u003C\u002Fli>\n\u003Cli>Ability to override scheduled date for Admins and Editors\u003C\u002Fli>\n\u003Cli>‘Publish Now’ actions for Admins and Editors\u003C\u002Fli>\n\u003C\u002Ful>\n","Simple and precise post publishing control for WordPress based on day of the week and time of day.",10,1208,"2019-06-13T13:54:00.000Z","5.2.24",[48,49,50,51,52],"auto-schedule","future","posts","publish","schedule","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpresswell-publication-schedule","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpresswell-publication-schedule.zip",85]