[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fjIegy2zKDbNn1z_kWic7rYMwL0ep1beW5Dz2kEDklMs":3},{"slug":4,"display_name":4,"profile_url":5,"plugin_count":6,"total_installs":7,"avg_security_score":8,"avg_patch_time_days":9,"trust_score":10,"computed_at":11,"plugins":12},"jethin","https:\u002F\u002Fprofiles.wordpress.org\u002Fjethin\u002F",5,150,88,30,86,"2026-04-04T11:54:10.051Z",[13,37,55,72,90],{"slug":14,"name":15,"version":16,"author":4,"author_profile":5,"description":17,"short_description":18,"active_installs":19,"downloaded":20,"rating":19,"num_ratings":21,"last_updated":22,"tested_up_to":23,"requires_at_least":24,"requires_php":25,"tags":26,"homepage":25,"download_link":32,"security_score":33,"vuln_count":34,"unpatched_count":34,"last_vuln_date":35,"fetched_at":36},"home-page-slideshow","Home Page Slideshow","1.2","\u003Cp>This plugin creates a “Home Slideshow” options page under the “Settings” menu in the WordPress admin. Editors and admins can create and manage individual slides on this page. These slides can then be displayed as a dynamic slideshow on a site’s home page using the simple ‘[home_slideshow]’ shortcode. (\u003Ca href=\"http:\u002F\u002Fs89693915.onlinehome.us\u002Fwp\u002F\" rel=\"nofollow ugc\">View an example slideshow\u003C\u002Fa>)\u003C\u002Fp>\n\u003Cp>The plugin supports one optional “options” shortcode attribute:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[home_slideshow options=\"timeout=5000\"]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cem>options\u003C\u002Fem>: This attribute can be used to override default slideshow options or set custom options. Attribute values use query string format, e.g.: ‘option1=value1&option2=value2’ etc. Option names are in standard Cycle2 format \u003Cem>without ‘data-cycle-‘ prefix\u003C\u002Fem>. \u003Ca href=\"http:\u002F\u002Fjquery.malsup.com\u002Fcycle2\u002Fapi\u002F#options\" rel=\"nofollow ugc\">See the Cycle2 website\u003C\u002Fa> for documentation and supported options.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Notes\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Slides include image (required) and optional title, subtitle and link.\u003C\u002Fp>\n\u003Cp>Links and image size can be set when selecting image. (Full size images recommended.)\u003C\u002Fp>\n\u003Cp>Slideshows and slides are 100% the width of their container. Upload images that are at least as wide as the slideshow you want them to appear in.\u003C\u002Fp>\n\u003Cp>Default Display: Aspect ratio of slideshow image area is set by the first image; images appear at 100% width \u002F height of the slide container; images will show scaling in slideshows that contain both horizontally and vertically aligned images.\u003C\u002Fp>\n\u003Cp>Default CSS ids begin with “hss-“, Cycle2 classes with “cycle-“. Default slideshow id is “home-slideshow”. Default CSS styles were created using Twenty Thirteen theme — some theme CSS customization may be necessary for other themes.\u003C\u002Fp>\n\u003Cp>Slideshows look and perform best if images are sized to desired slideshow container \u002F aspect ratio.\u003C\u002Fp>\n\u003Cp>This plugin uses \u003Ca href=\"http:\u002F\u002Fjquery.malsup.com\u002Fcycle2\u002F\" rel=\"nofollow ugc\">jQuery Cycle2\u003C\u002Fa>. Cycle2 may conflict with previous versions of Cycle if used on the same page.\u003C\u002Fp>\n","Create a simple, lightweight, responsive slideshow for your site's home page.",100,15541,3,"2014-10-20T15:19:00.000Z","3.9.40","3.0","",[27,28,29,30,31],"front","gallery","home","slider","slideshow","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fhome-page-slideshow.1.2.zip",85,0,null,"2026-03-15T15:16:48.613Z",{"slug":38,"name":39,"version":40,"author":4,"author_profile":5,"description":41,"short_description":42,"active_installs":9,"downloaded":43,"rating":44,"num_ratings":45,"last_updated":46,"tested_up_to":47,"requires_at_least":24,"requires_php":25,"tags":48,"homepage":25,"download_link":54,"security_score":33,"vuln_count":34,"unpatched_count":34,"last_vuln_date":35,"fetched_at":36},"foundation-top-bar-navigation-menu","Foundation Top Bar Navigation Menu","1.0","\u003Cp>The Foundation Top Bar Navigation Menu plugin allows theme developers to display a WordPress menu as a responsive Foundation top bar. The plugin includes the following core functions:\u003C\u002Fp>\n\u003Col>\n\u003Cli>A walker that applies Foundation top bar classes to a menu or page list\u003C\u002Fli>\n\u003Cli>Registration of a default “Top Bar” menu location\u003C\u002Fli>\n\u003Cli>The ability to include a basic version of Foundation that supports the top bar\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>Visit \u003Ca href=\"http:\u002F\u002Ffoundation.zurb.com\u002Fdocs\u002Fcomponents\u002Ftopbar.html\" rel=\"nofollow ugc\">Zurb Foundation\u003C\u002Fa> to learn more about the Foundation top bar and to view an example.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Usage\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Download and include the Foundation framework in your theme (or load the basic version included with the plugin — see Notes below.)\u003C\u002Fp>\n\u003Cp>Assign a new or existing WordPress menu into the “Top Bar” menu location. (or use ‘wp_list_pages’ to display a list of pages as a top bar — see below.)\u003C\u002Fp>\n\u003Cp>Edit your theme’s templates to display the top bar menu where you’d like it to appear. Use WordPress’ ‘wp_nav_menu’ function to display the top bar menu:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nif ( has_nav_menu('topbar') ) { \n    wp_nav_menu( array(\n        'theme_location' => 'topbar',\n        'container' => false,\n        'walker' => new ftb_menu()\n    ));\n}\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>A list of pages can be displayed instead of a menu using the ‘wp_list_pages’ function:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nwp_list_pages( array(\n    'title_li' => '',\n    'walker' => new ftb_pages()\n));\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Notes\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\n\u003Cp>The ftb_menu() and ftb_pages() walkers both accept a single ‘no_wrap’ argument. Including this argument will remove the default top bar HTML wrapper and display just the \u003Ccode>\u003Cul>\u003C\u002Fcode> unordered list.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>‘wp_nav_menu() -> theme_location’ argument can be set to any registered menu area.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>This plugin optionally includes a basic version of Foundation 5.5.2 that contains only top bar support. It is recommended that Foundation be included directly in your theme instead of using this basic version. To load the plugin’s basic version in your theme set “Load Foundation Basic in Theme” to “true” in the “Settings -> General” admin screen.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Visit \u003Ca href=\"\u002F\u002Ffoundation.zurb.com\u002Fdevelop\u002Fdownload.html’\" rel=\"nofollow ugc\">Zurb Foundation\u003C\u002Fa> to download Foundation and to view installation and usage documentation.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Default WordPress menu classes are not included in outputted top bar HTML.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Notes\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Top bar styling is the default included with the Foundation framework. Some customization is possible using Foundation and\u002For WordPress methods, but any customizations must be implemented by theme developers.\u003C\u002Fp>\n\u003Cp>This plugin is developed using \u003Ca href=\"\u002F\u002Ffoundation.zurb.com\u002Findex.html’\" rel=\"nofollow ugc\">Zurb Foundation\u003C\u002Fa> version 5.5.2.\u003C\u002Fp>\n","Display a WordPress navigation menu or page list as a responsive Foundation top bar.",5168,80,2,"2015-09-23T15:16:00.000Z","4.2.39",[49,50,51,52,53],"foundation","menu","mobile","navigation","responsive","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffoundation-top-bar-navigation-menu.zip",{"slug":56,"name":57,"version":58,"author":4,"author_profile":5,"description":59,"short_description":60,"active_installs":61,"downloaded":62,"rating":63,"num_ratings":21,"last_updated":64,"tested_up_to":23,"requires_at_least":24,"requires_php":25,"tags":65,"homepage":25,"download_link":71,"security_score":33,"vuln_count":34,"unpatched_count":34,"last_vuln_date":35,"fetched_at":36},"people-page","People Page","1.1","\u003Cp>This plugin allows editors to create a “People Page” that displays a list of selected site users with photos, bios, titles, profile and website links and more.\u003C\u002Fp>\n\u003Cp>When activated via a page template, the plugin creates a drag and drop meta box which editors can use to select users and create headers. These users are listed on the people page template, along with links to their full profile when applicable.\u003C\u002Fp>\n\u003Cp>The plugin also creates custom “Title” and “Photo” fields on the “User Edit” admin screen, which are used in theme pages. The plugin also supports “User Photo” plugin images and gravatars.\u003C\u002Fp>\n\u003Cp>Three template files for both the “Twenty Twelve” and “Twenty Thirteen” themes are included within the \u002Ftheme-templates\u002F directory:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>“people-page.php”\u003C\u002Fstrong> displays the people page index list\u003C\u002Fli>\n\u003Cli>\u003Cstrong>“author.php”\u003C\u002Fstrong> displays a single user’s info page\u003C\u002Fli>\n\u003Cli>\u003Cstrong>“people-page.css”\u003C\u002Fstrong> contains basic people page styles for each theme; this file can be customized\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>See “Other Notes” for more details and usage instructions.\u003Cbr \u002F>\n\u003Cstrong>Required Theme Files\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>After installation a “people-page.php” template must be created inside your theme’s folder in order to use the plugin. Default templates (based on the Twenty Twelve and Twenty Thirteen themes) are included inside the plugin’s ‘theme-templates’ directory. Copy this file to your theme’s directory if you wish to use it. You can also create a custom template from your site’s theme:\u003C\u002Fp>\n\u003Col>\n\u003Cli>Duplicate the “page.php” file in your theme’s folder and rename it “people-page.php”\u003C\u002Fli>\n\u003Cli>Assign your new page as a template by entering the following comment directly after the first php tag: \u002F* Template Name: People Page *\u002F\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Insert the people page \u003Cem>index\u003C\u002Fem> function after the WordPress loop (or wherever you’d like it to appear):\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>\u003Cem>Excerpt Length Argument (integer, optional)\u003C\u002Fem>: Set the character limit where “Biographical Info” will be excerpted. Default = 420.\u003C\u002Fp>\n\u003Cp>A CSS stylesheet “people-page.css” that contains basic styles can be found in each of the ‘theme-templates’ subdirectories. Copy it into your theme’s directory to apply the default styles. The styles in this file can be altered to better match your theme.\u003C\u002Fp>\n\u003Cp>You may also wish to customize your theme’s “author.php” template, which is used to display users’ profiles. A sample “author.php” file (based on the Twenty Twelve theme) is included in the ‘theme-templates’. To use your theme’s existing “author.php” file, insert the people page \u003Cem>author\u003C\u002Fem> function after the loop (or wherever you’d like it to appear):\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php echo people_page_author(); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>The people page data is stored as an array of user IDs and heading strings. You can access this array directly in your theme using get_post_meta():\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php $people = get_post_meta( $post->ID, 'peeps', true ); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Using the Plugin\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>To activate the plugin, set a page’s template to use the “People Page” template and update the page. You should now see the people page meta box in the center column. Use this area to select and arrange users and create section headings if desired.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Additional User Edit \u002F Profile Fields\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>“Title” and “Photo” fields (optional) are added to the bottom of the “Edit User” admin page when the plugin is activated. When set these fields are included in people page displays. If a photo is not set the plugin will attempt to display 1) a photo set using the “User Photo” plugin or 2) a gravatar. Gravatar size is 150 pixels by default.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Default Displays\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cem>People Page\u003C\u002Fem>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Photo (if set; if not set and available: “User Photo” image; gravatar)\u003C\u002Fli>\n\u003Cli>Name (linked if “Biographical Info” field is excerpted)\u003C\u002Fli>\n\u003Cli>Title (if set)\u003C\u002Fli>\n\u003Cli>[ posts | website ] (links if: User has posts (to profile) | website if field is set)\u003C\u002Fli>\n\u003Cli>Biographical Info (includes link to profile if text is excerpted)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cem>Author Page\u003C\u002Fem>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Photo (if set; if not set and available: “User Photo” image; gravatar)\u003C\u002Fli>\n\u003Cli>Name\u003C\u002Fli>\n\u003Cli>Title (if set)\u003C\u002Fli>\n\u003Cli>[ website ] (if set)\u003C\u002Fli>\n\u003Cli>Biographical Info\u003C\u002Fli>\n\u003Cli>Posts (last three; post details: date, and excerpt – if set: comment number, category, tags)\u003C\u002Fli>\n\u003C\u002Ful>\n","Create a \"People Page\" that displays a list of selected site users with photos, bios, titles, links and more.",20,4988,66,"2014-08-08T17:12:00.000Z",[66,67,68,69,70],"authors","bios","photos","staff","users","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpeople-page.1.1.zip",{"slug":73,"name":74,"version":40,"author":4,"author_profile":5,"description":75,"short_description":76,"active_installs":34,"downloaded":77,"rating":34,"num_ratings":34,"last_updated":78,"tested_up_to":79,"requires_at_least":80,"requires_php":81,"tags":82,"homepage":25,"download_link":88,"security_score":89,"vuln_count":34,"unpatched_count":34,"last_vuln_date":35,"fetched_at":36},"auto-anchor-links-list","Auto Anchor Links List","\u003Cp>A block that automatically creates a list of anchor links to headings in a post.\u003C\u002Fp>\n\u003Ch3>Usage\u003C\u002Fh3>\n\u003Cp>Insert the “Auto Anchors Links List” block where you’d like it to appear. A post can only contain one “Auto Anchor Links List” block. Preview the post to view the list display and test links.\u003C\u002Fp>\n\u003Cp>Heading levels h2-h6 are supported. Heading levels (h2 -> h3 -> h4) must be ordered properly; sub-heading levels are indented in the list.\u003C\u002Fp>\n\u003Cp>The “Auto Anchors Links List” block is automatically updated when headings in the post are modified. Any manual edits to the list will be overwritten. To maintain the list manually, remove the “auto-anchor-links-list” class from the block to transform it into a WordPress core list block.\u003C\u002Fp>\n\u003Ch4>Additional Controls\u003C\u002Fh4>\n\u003Cp>Apply the “Manual Anchor” block style to a heading and then set its anchor text attribute to:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>[empty] A plain heading tag (omitted from auto anchors list)\u003C\u002Fli>\n\u003Cli>[“custom-anchor”] A persistent custom anchor; useful for permalinks (included in auto anchors list)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Add a “no-auto-anchor” class to any heading block to omit it from auto anchors list.\u003C\u002Fp>\n","A block that automatically creates a list of anchor links to headings in a post.",498,"2024-09-25T19:06:00.000Z","6.6.5","6.0","7.0",[83,84,85,86,87],"anchor-links","anchors","block","jump-links","table-of-contents","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fauto-anchor-links-list.1.0.zip",92,{"slug":91,"name":92,"version":40,"author":4,"author_profile":5,"description":93,"short_description":94,"active_installs":34,"downloaded":95,"rating":34,"num_ratings":34,"last_updated":96,"tested_up_to":79,"requires_at_least":80,"requires_php":97,"tags":98,"homepage":25,"download_link":101,"security_score":89,"vuln_count":34,"unpatched_count":34,"last_vuln_date":35,"fetched_at":36},"smc-quiz","Simple Multiple Choice Quiz","\u003Cp>Create simple, interactive, block-based multiple choice quizzes. Example quiz: \u003Ca href=\"https:\u002F\u002Fnews.climate.columbia.edu\u002F2024\u002F04\u002F11\u002Fquiz-plastics-101\u002F\" rel=\"nofollow ugc\">Plastics 101\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch4>Post Set Up\u003C\u002Fh4>\n\u003Col>\n\u003Cli>Add the required “quiz” tag to a post. Create the “quiz” tag if it doesn’t exist.\u003C\u002Fli>\n\u003Cli>Save the post.\u003C\u002Fli>\n\u003Cli>Refresh the post edit page to load the SMC Quiz block template and block styles.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch4>Create a Quiz\u003C\u002Fh4>\n\u003Col>\n\u003Cli>Insert a new “SMC Quiz” block into your post. The “SMC Quiz” block provides a basic quiz template.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>Each quiz question is a child group block within the “SMC Quiz” root block. Each question group block must contain at least two blocks:\u003C\u002Fp>\n\u003Col>\n\u003Cli>A heading (h2-h4) that contains the question text.\u003C\u002Fli>\n\u003Cli>A list block with list items for each multiple choice answer. The “Correct” block style must be selected for the correct list item answer. There can only be a single correct answer for each question.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch4>Optional Quiz Blocks\u003C\u002Fh4>\n\u003Cp>Each question block can also contain an answer block. The answer block contains additional information that is shown after the question has been answered. The answer block can be a simple paragraph or a group block.\u003C\u002Fp>\n\u003Cp>Similarly, the “SMC Quiz” root block can contain a post-quiz block as it’s last block. The post-quiz block displays additional information that is shown once the quiz is completed. Like answer blocks, the post-quiz block can be a simple paragraph or a group block. Important: The “Post SMC Quiz” block style must be selected for the post-quiz block.\u003C\u002Fp>\n\u003Ch4>Populate and Preview\u003C\u002Fh4>\n\u003Cp>Duplicate and edit existing question groups to populate your quiz, or add new question groups. Preview your post to view and test quiz functionality.\u003C\u002Fp>\n\u003Ch4>Default Quiz Behavior\u003C\u002Fh4>\n\u003Cp>After each question is answered, a “Correct!” or “Incorrect! The correct answer is…” text will be displayed. This text will be prepended to the question’s answer block if it exists.\u003C\u002Fp>\n\u003Cp>A final score will be shown at the bottom of the quiz once it is completed. The final score text is:\u003C\u002Fp>\n\u003Cp>“You answered X of X questions correctly for a score of XX%. [SCORE EXCLAMATION!]”\u003C\u002Fp>\n\u003Cp>The score text will be prepended to the post-quiz block if it exists.\u003C\u002Fp>\n\u003Cp>A “quiz” event will attempt to be sent to the website’s Google Analytics account once the quiz is completed. This quiz event includes a single “score” parameter.\u003C\u002Fp>\n\u003Ch4>Notes\u003C\u002Fh4>\n\u003Cp>Only a single quiz can appear in a post.\u003C\u002Fp>\n\u003Cp>Simple Multiple Choice Quiz is intended for entertainment purposes only, and answers can be viewed with minimal effort. Do not use the SMC Quiz component in test settings meant to evaluate students.\u003C\u002Fp>\n\u003Ch4>Support\u003C\u002Fh4>\n\u003Cp>Limited support is available for this plugin. When possible, plugin users are encouraged to provide basic support for other users.\u003C\u002Fp>\n\u003Ch4>Source\u003C\u002Fh4>\n\u003Cp>The uncompressed source code (JavaScript and CSS) can be found in the plugin’s .\u002Fsrc directory.\u003C\u002Fp>\n","A simple, interactive, block-based multiple choice quiz component.",535,"2024-08-30T15:28:00.000Z","8.0",[99,100],"blocks","quiz","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsmc-quiz.zip"]