{"id":109959,"date":"2019-10-04T00:58:06","date_gmt":"2019-10-04T00:58:06","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/blogmentor\/"},"modified":"2026-08-21T11:18:30","modified_gmt":"2026-08-21T11:18:30","slug":"blogmentor","status":"publish","type":"plugin","link":"https:\/\/mfe.wordpress.org\/plugins\/blogmentor\/","author":17543637,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"1.6.2","stable_tag":"1.6.2","tested":"7.1.2","requires":"4.4","requires_php":"7.4","requires_plugins":null,"header_name":"Blogmentor - Blog Layouts for Elementor","header_author":"AuburnForest","header_description":"Showcase WordPress posts in beautiful ways with Elementor page builder.","assets_banners_color":"9999bf","last_updated":"2026-08-21 11:18:30","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"https:\/\/wordpress.org\/plugins\/blogmentor\/","header_author_uri":"https:\/\/auburnforest.com","rating":4.7,"author_block_rating":0,"active_installs":4000,"downloads":74255,"num_ratings":7,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"1.0":{"tag":"1.0","author":"auburnforest","date":"2019-10-08 05:17:46","revision":2169779},"1.5":{"tag":"1.5","author":"techeshta","date":"2026-08-06 06:07:30","revision":3636152},"1.6":{"tag":"1.6","author":"techeshta","date":"2026-08-06 06:07:30","revision":3636152},"1.6.1":{"tag":"1.6.1","author":"alkesh7","date":"2026-08-07 07:28:55","revision":3637521},"1.6.2":{"tag":"1.6.2","author":"techeshta","date":"2026-08-21 11:18:30","revision":3658859}},"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":2,"5":5},"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":2167934,"resolution":"128x128","location":"assets","locale":"","width":128,"height":128},"icon-256x256.png":{"filename":"icon-256x256.png","revision":2167934,"resolution":"256x256","location":"assets","locale":"","width":256,"height":256}},"assets_banners":{"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":2167934,"resolution":"1544x500","location":"assets","locale":"","width":1544,"height":500},"banner-772x250.png":{"filename":"banner-772x250.png","revision":2167934,"resolution":"772x250","location":"assets","locale":"","width":772,"height":250}},"assets_blueprints":{"blueprint.json":{"filename":"blueprint.json","revision":3698514,"resolution":false,"location":"assets","locale":"","contents":"{\"$schema\":\"https:\\\/\\\/playground.wordpress.net\\\/blueprint-schema.json\",\"landingPage\":\"\\\/wp-admin\\\/edit.php?post_type=page\",\"preferredVersions\":{\"php\":\"8.3\",\"wp\":\"latest\"},\"features\":{\"networking\":true},\"login\":true,\"steps\":[{\"step\":\"installPlugin\",\"pluginData\":{\"resource\":\"wordpress.org\\\/plugins\",\"slug\":\"elementor\"},\"options\":{\"activate\":true}},{\"step\":\"installPlugin\",\"pluginData\":{\"resource\":\"wordpress.org\\\/plugins\",\"slug\":\"blogmentor\"},\"options\":{\"activate\":true}},{\"step\":\"runPHP\",\"code\":\"<?php\\nrequire_once '\\\/wordpress\\\/wp-load.php';\\n\\nupdate_option( 'elementor_onboarded', '2.0.0' );\\ndelete_transient( 'elementor_activation_redirect' );\\n\\nrequire_once ABSPATH . 'wp-admin\\\/includes\\\/image.php';\\n\\n$sample_posts = array(\\n\\tarray(\\n\\t\\t'title'   => 'The Art of Minimalist Design',\\n\\t\\t'content' => 'Minimalist design strips away the unnecessary so the message can breathe. In this post we look at how less can truly be more.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'   => '10 Tips for Better Blogging',\\n\\t\\t'content' => 'From finding your voice to staying consistent, these ten tips will help you grow a blog readers keep coming back to.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'   => 'Exploring Modern Web Trends',\\n\\t\\t'content' => 'Web design keeps evolving. We break down the trends shaping how modern websites look, feel, and perform.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'   => 'How to Build a Content Strategy',\\n\\t\\t'content' => 'A solid content strategy turns random posts into a plan that grows your audience over time. Here is where to start.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'   => 'Photography Basics for Beginners',\\n\\t\\t'content' => 'Great photos start with a few fundamentals. Learn the basics of light, composition, and framing in this beginner guide.',\\n\\t),\\n);\\n\\n$placeholder_source = BLOGMENTOR_PATH . 'assets\\\/images\\\/placeholder.jpg';\\n$upload_dir         = wp_upload_dir();\\n\\nforeach ( $sample_posts as $index => $sample_post ) {\\n\\t$post_id = wp_insert_post(\\n\\t\\tarray(\\n\\t\\t\\t'post_title'   => $sample_post['title'],\\n\\t\\t\\t'post_content' => $sample_post['content'],\\n\\t\\t\\t'post_status'  => 'publish',\\n\\t\\t\\t'post_type'    => 'post',\\n\\t\\t),\\n\\t\\ttrue\\n\\t);\\n\\n\\tif ( is_wp_error( $post_id ) ) {\\n\\t\\tcontinue;\\n\\t}\\n\\n\\t$filename     = 'blogmentor-sample-' . ( $index + 1 ) . '.jpg';\\n\\t$destination  = trailingslashit( $upload_dir['path'] ) . $filename;\\n\\n\\tif ( ! copy( $placeholder_source, $destination ) ) {\\n\\t\\tcontinue;\\n\\t}\\n\\n\\t$attachment_id = wp_insert_attachment(\\n\\t\\tarray(\\n\\t\\t\\t'post_mime_type' => 'image\\\/jpeg',\\n\\t\\t\\t'post_title'     => $sample_post['title'],\\n\\t\\t\\t'post_status'    => 'inherit',\\n\\t\\t),\\n\\t\\t$destination,\\n\\t\\t$post_id\\n\\t);\\n\\n\\tif ( is_wp_error( $attachment_id ) ) {\\n\\t\\tcontinue;\\n\\t}\\n\\n\\t$attachment_data = wp_generate_attachment_metadata( $attachment_id, $destination );\\n\\twp_update_attachment_metadata( $attachment_id, $attachment_data );\\n\\tset_post_thumbnail( $post_id, $attachment_id );\\n}\\n\\n$elementor_data = array(\\n\\tarray(\\n\\t\\t'id' => '1a2b3c4',\\n\\t\\t'elType' => 'section',\\n\\t\\t'settings' => array(),\\n\\t\\t'elements' => array(\\n\\t\\t\\tarray(\\n\\t\\t\\t\\t'id' => '2b3c4d5',\\n\\t\\t\\t\\t'elType' => 'column',\\n\\t\\t\\t\\t'settings' => array( '_column_size' => 100 ),\\n\\t\\t\\t\\t'elements' => array(\\n\\t\\t\\t\\t\\tarray(\\n\\t\\t\\t\\t\\t\\t'id' => '3c4d5e6',\\n\\t\\t\\t\\t\\t\\t'elType' => 'widget',\\n\\t\\t\\t\\t\\t\\t'widgetType' => 'heading',\\n\\t\\t\\t\\t\\t\\t'settings' => array(\\n\\t\\t\\t\\t\\t\\t\\t'title' => 'Blogmentor - Blog Layouts for Elementor',\\n\\t\\t\\t\\t\\t\\t\\t'header_size' => 'h2',\\n\\t\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t\\t\\t'elements' => array(),\\n\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t),\\n\\t\\t\\t),\\n\\t\\t),\\n\\t),\\n\\tarray(\\n\\t\\t'id' => '4d5e6f7',\\n\\t\\t'elType' => 'section',\\n\\t\\t'settings' => array(),\\n\\t\\t'elements' => array(\\n\\t\\t\\tarray(\\n\\t\\t\\t\\t'id' => '5e6f7a8',\\n\\t\\t\\t\\t'elType' => 'column',\\n\\t\\t\\t\\t'settings' => array( '_column_size' => 100 ),\\n\\t\\t\\t\\t'elements' => array(\\n\\t\\t\\t\\t\\tarray(\\n\\t\\t\\t\\t\\t\\t'id' => '6f7a8b9',\\n\\t\\t\\t\\t\\t\\t'elType' => 'widget',\\n\\t\\t\\t\\t\\t\\t'widgetType' => 'heading',\\n\\t\\t\\t\\t\\t\\t'settings' => array(\\n\\t\\t\\t\\t\\t\\t\\t'title' => 'Grid Layout',\\n\\t\\t\\t\\t\\t\\t\\t'header_size' => 'h3',\\n\\t\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t\\t\\t'elements' => array(),\\n\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t\\tarray(\\n\\t\\t\\t\\t\\t\\t'id' => '7a8b9c0',\\n\\t\\t\\t\\t\\t\\t'elType' => 'widget',\\n\\t\\t\\t\\t\\t\\t'widgetType' => 'blogmentor_blog_posts',\\n\\t\\t\\t\\t\\t\\t'settings' => array(\\n\\t\\t\\t\\t\\t\\t\\t'bm_blog_layout' => 'grid',\\n\\t\\t\\t\\t\\t\\t\\t'bm_blog_style' => 'bm_blog_style_1',\\n\\t\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t\\t\\t'elements' => array(),\\n\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t),\\n\\t\\t\\t),\\n\\t\\t),\\n\\t),\\n\\tarray(\\n\\t\\t'id' => '8b9c0d1',\\n\\t\\t'elType' => 'section',\\n\\t\\t'settings' => array(),\\n\\t\\t'elements' => array(\\n\\t\\t\\tarray(\\n\\t\\t\\t\\t'id' => '9c0d1e2',\\n\\t\\t\\t\\t'elType' => 'column',\\n\\t\\t\\t\\t'settings' => array( '_column_size' => 100 ),\\n\\t\\t\\t\\t'elements' => array(\\n\\t\\t\\t\\t\\tarray(\\n\\t\\t\\t\\t\\t\\t'id' => '0d1e2f3',\\n\\t\\t\\t\\t\\t\\t'elType' => 'widget',\\n\\t\\t\\t\\t\\t\\t'widgetType' => 'heading',\\n\\t\\t\\t\\t\\t\\t'settings' => array(\\n\\t\\t\\t\\t\\t\\t\\t'title' => 'Masonry Layout',\\n\\t\\t\\t\\t\\t\\t\\t'header_size' => 'h3',\\n\\t\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t\\t\\t'elements' => array(),\\n\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t\\tarray(\\n\\t\\t\\t\\t\\t\\t'id' => '1e2f3a4',\\n\\t\\t\\t\\t\\t\\t'elType' => 'widget',\\n\\t\\t\\t\\t\\t\\t'widgetType' => 'blogmentor_blog_posts',\\n\\t\\t\\t\\t\\t\\t'settings' => array(\\n\\t\\t\\t\\t\\t\\t\\t'bm_blog_layout' => 'masonry',\\n\\t\\t\\t\\t\\t\\t\\t'bm_blog_style' => 'bm_blog_style_1',\\n\\t\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t\\t\\t'elements' => array(),\\n\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t),\\n\\t\\t\\t),\\n\\t\\t),\\n\\t),\\n\\tarray(\\n\\t\\t'id' => '2f3a4b5',\\n\\t\\t'elType' => 'section',\\n\\t\\t'settings' => array(),\\n\\t\\t'elements' => array(\\n\\t\\t\\tarray(\\n\\t\\t\\t\\t'id' => '3a4b5c6',\\n\\t\\t\\t\\t'elType' => 'column',\\n\\t\\t\\t\\t'settings' => array( '_column_size' => 100 ),\\n\\t\\t\\t\\t'elements' => array(\\n\\t\\t\\t\\t\\tarray(\\n\\t\\t\\t\\t\\t\\t'id' => '4b5c6d7',\\n\\t\\t\\t\\t\\t\\t'elType' => 'widget',\\n\\t\\t\\t\\t\\t\\t'widgetType' => 'heading',\\n\\t\\t\\t\\t\\t\\t'settings' => array(\\n\\t\\t\\t\\t\\t\\t\\t'title' => 'Metro Layout',\\n\\t\\t\\t\\t\\t\\t\\t'header_size' => 'h3',\\n\\t\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t\\t\\t'elements' => array(),\\n\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t\\tarray(\\n\\t\\t\\t\\t\\t\\t'id' => '5c6d7e8',\\n\\t\\t\\t\\t\\t\\t'elType' => 'widget',\\n\\t\\t\\t\\t\\t\\t'widgetType' => 'blogmentor_blog_posts',\\n\\t\\t\\t\\t\\t\\t'settings' => array(\\n\\t\\t\\t\\t\\t\\t\\t'bm_blog_layout' => 'metro',\\n\\t\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t\\t\\t'elements' => array(),\\n\\t\\t\\t\\t\\t),\\n\\t\\t\\t\\t),\\n\\t\\t\\t),\\n\\t\\t),\\n\\t),\\n);\\n\\n$page_id = wp_insert_post(\\n    array(\\n        'post_title'   => 'Blogmentor Demo',\\n        'post_status'  => 'publish',\\n        'post_type'    => 'page'\\n    ),\\n    true\\n);\\n\\nif ( is_wp_error( $page_id ) ) {\\n    throw new RuntimeException( $page_id->get_error_message() );\\n}\\n\\nupdate_post_meta( $page_id, '_elementor_edit_mode', 'builder' );\\nupdate_post_meta( $page_id, '_elementor_template_type', 'wp-page' );\\nupdate_post_meta( $page_id, '_elementor_version', defined( 'ELEMENTOR_VERSION' ) ? ELEMENTOR_VERSION : '3.0.0' );\\nupdate_post_meta( $page_id, '_elementor_data', wp_slash( wp_json_encode( $elementor_data ) ) );\\n\"}]}"}},"all_blocks":[],"tagged_versions":["1.0","1.5","1.6","1.6.1","1.6.2"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":2169700,"resolution":"1","location":"assets","locale":"","width":2396,"height":1212},"screenshot-2.png":{"filename":"screenshot-2.png","revision":2169700,"resolution":"2","location":"assets","locale":"","width":2160,"height":1280},"screenshot-3.png":{"filename":"screenshot-3.png","revision":2169700,"resolution":"3","location":"assets","locale":"","width":2076,"height":1380},"screenshot-4.png":{"filename":"screenshot-4.png","revision":2169700,"resolution":"4","location":"assets","locale":"","width":2284,"height":1482},"screenshot-5.png":{"filename":"screenshot-5.png","revision":2169700,"resolution":"5","location":"assets","locale":"","width":2134,"height":1518}},"screenshots":{"1":"Grid Layout - Style 1","2":"Grid Layout - Style 2","3":"Masonry Layout - Style 1","4":"Masonry Layout - Style 2","5":"Metro Layout - Style 1"}},"plugin_section":[],"plugin_tags":[176946,76538,131399,276808,276809],"plugin_category":[],"plugin_contributors":[133258,176948,161569,167400],"plugin_business_model":[],"class_list":["post-109959","plugin","type-plugin","status-publish","hentry","plugin_tags-blog-module","plugin_tags-elementor","plugin_tags-elementor-addon","plugin_tags-elementor-blog-addon","plugin_tags-post-showcase-module","plugin_contributors-alkesh7","plugin_contributors-auburnforest","plugin_contributors-techeshta","plugin_contributors-vastarpara","plugin_committers-alkesh7","plugin_committers-auburnforest","plugin_committers-hasanchowdhury","plugin_committers-techeshta","plugin_support_reps-alkesh7"],"banners":{"banner":"https:\/\/ps.w.org\/blogmentor\/assets\/banner-772x250.png?rev=2167934","banner_2x":"https:\/\/ps.w.org\/blogmentor\/assets\/banner-1544x500.png?rev=2167934","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/blogmentor\/assets\/icon-128x128.png?rev=2167934","icon_2x":"https:\/\/ps.w.org\/blogmentor\/assets\/icon-256x256.png?rev=2167934","generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/blogmentor\/assets\/screenshot-1.png?rev=2169700","caption":"Grid Layout - Style 1"},{"src":"https:\/\/ps.w.org\/blogmentor\/assets\/screenshot-2.png?rev=2169700","caption":"Grid Layout - Style 2"},{"src":"https:\/\/ps.w.org\/blogmentor\/assets\/screenshot-3.png?rev=2169700","caption":"Masonry Layout - Style 1"},{"src":"https:\/\/ps.w.org\/blogmentor\/assets\/screenshot-4.png?rev=2169700","caption":"Masonry Layout - Style 2"},{"src":"https:\/\/ps.w.org\/blogmentor\/assets\/screenshot-5.png?rev=2169700","caption":"Metro Layout - Style 1"}],"raw_content":"<!--section=description-->\n<p>Blogmentor is an elementor add-on to showcase your WordPress posts in beautiful way. This is an simple and flexible way to decorate your WordPress posts with the help of Elementor page builder.<\/p>\n\n<p><a href=\"https:\/\/elementor.auburnforest.com\/blogmentor\/\">View Demo<\/a><\/p>\n\n<h3>3 Blog Posts Layouts<\/h3>\n\n<p>We have designed 3 of the most useful blog layouts to climb the top of your design capabilities.<\/p>\n\n<ol>\n<li><a href=\"https:\/\/elementor.auburnforest.com\/blogmentor\/grid-layout\/\">Grid Layout<\/a> - 2 different styles available<\/li>\n<li><a href=\"https:\/\/elementor.auburnforest.com\/blogmentor\/masonry-layout\/\">Masonry Layout<\/a> - 2 different styles available<\/li>\n<li><a href=\"https:\/\/elementor.auburnforest.com\/blogmentor\/metro-layout\/\">Metro Layout<\/a> - 1 style available<\/li>\n<li>Many more coming soon ...<\/li>\n<\/ol>\n\n<h3>Documentation and Support<\/h3>\n\n<ul>\n<li>If you have any more questions, visit our support on the <a href=\"https:\/\/wordpress.org\/support\/plugin\/blogmentor\">Plugin's Forum<\/a>.<\/li>\n<\/ul>\n\n<p><em>Note:<\/em> This plugin is a widget of <a href=\"https:\/\/wordpress.org\/plugins\/elementor\/\">Elementor Page Builder<\/a> and will only work with Elementor Page Builder installed.<\/p>\n\n<h3>Like Blogmentor Plugin?<\/h3>\n\n<ul>\n<li>Don't forget to rate us on <a href=\"https:\/\/wordpress.org\/support\/plugin\/blogmentor\/reviews\/?rate=5#new-post\">WordPress<\/a> :)<\/li>\n<\/ul>\n\n<h3>Credits<\/h3>\n\n<p>This plugin bundles a minified build of <a href=\"https:\/\/github.com\/FortAwesome\/Font-Awesome\">Font Awesome Free<\/a> v7.3.1 (icons: CC BY 4.0, fonts: SIL OFL 1.1, code: MIT License). Full source and build tools are maintained at the linked repository.<\/p>\n\n<!--section=installation-->\n<ol>\n<li>Upload the plugin files to the <code>\/wp-content\/plugins\/plugin-name<\/code> directory, or install the plugin through the WordPress plugins screen directly.<\/li>\n<li>Activate the plugin through the 'Plugins' screen in WordPress<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id=\"can%20i%20add%20multiple%20blogmentor%20with%20single%20page%3F\"><h3>Can I add multiple Blogmentor with single page?<\/h3><\/dt>\n<dd><p>Yes, you can. Blogmentor plugin gives you the ability to add <strong>multiple Blog Posts on same page<\/strong>. You just need to drag and drop that module multiple times and select different post styles whatever you want.<\/p><\/dd>\n<dt id=\"can%20i%20change%20color%20or%20customize%20post%20style%20as%20per%20my%20wish%3F\"><h3>Can I change color or customize post style as per my wish?<\/h3><\/dt>\n<dd><p>Yes, You can customize it. We provided all possible options in backend to update it from default blog posts widget options.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.6.2<\/h4>\n\n<p>Release Date: August 21st, 2026<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 7.1 compatibility check<\/li>\n<li>Verified against a full PHPCS\/WPCS scan (WordPress, WordPress-Extra, WordPress-Docs standards) and WordPress.org Plugin Check with zero findings beyond this readme update<\/li>\n<\/ul>\n\n<h4>1.6.1<\/h4>\n\n<p>Release Date: August 7th, 2026<\/p>\n\n<ul>\n<li>[Changed] Raised minimum required PHP version to 7.4, matching WordPress core's own minimum as of WordPress 7.0<\/li>\n<li>[Changed] Updated bundled Font Awesome from v5.2.0 to v7.3.1 (solid icon set only)<\/li>\n<li>[Security] Removed a direct link to the 5-star filtered reviews page in the admin review-request notice, per WordPress.org guidelines<\/li>\n<li>[Fixed] Synced the plugin header name with the readme.txt listing title<\/li>\n<li>[Fixed] Corrected readme.txt \"Tested up to\" to a major.minor version<\/li>\n<li>[Fixed] Prefixed all global constants, functions, and template-local variables with <code>blogmentor_<\/code>\/<code>BLOGMENTOR_<\/code> (previously <code>bm_<\/code>\/<code>BM_<\/code>) to avoid naming collisions with other plugins<\/li>\n<li>[Fixed] Prefixed all registered\/enqueued style and script handles with <code>blogmentor-<\/code> to avoid collisions with other plugins\/themes<\/li>\n<li>[Fixed] Made \"Summary\" \/ \"Full Text\" post content feed options translatable<\/li>\n<li>[Fixed] Replaced blank\/placeholder (\"Cherry plant\") image alt text with a meaningful, translatable \"Default Post Image\" description<\/li>\n<li>[Improved] Coding standards cleanup: normalized CRLF line endings to LF across 8 files (PHPCS\/WPCS)<\/li>\n<li>[Improved] Regenerated languages\/blogmentor.pot translation template<\/li>\n<\/ul>\n\n<h4>1.6<\/h4>\n\n<p>Release Date: August 5th, 2026<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 7.0.2 compatibility check<\/li>\n<li>[Security] Escaped all dynamic output and hardened translation function usage<\/li>\n<li>[Fixed] Removed deprecated load_plugin_textdomain() calls (WordPress.org auto-loads translations since 4.6)<\/li>\n<li>[Improved] Coding standards cleanup (WordPress Coding Standards \/ PHPCS)<\/li>\n<\/ul>\n\n<h4>1.5<\/h4>\n\n<p>Release Date: October 5th, 2023<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.3.1 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.4<\/h4>\n\n<p>Release Date: December 8th, 2022<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.1 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.3<\/h4>\n\n<p>Release Date: May 25th, 2022<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 6.0 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.2<\/h4>\n\n<p>Release Date: September 7th, 2021<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress 5.8 compatibility Check<\/li>\n<\/ul>\n\n<h4>1.1<\/h4>\n\n<p>Release Date: August 16th, 2020<\/p>\n\n<ul>\n<li>[Updated] Latest WordPress compatibility Check<\/li>\n<\/ul>\n\n<h4>1.0<\/h4>\n\n<p>Release Date: October 3rd, 2019<\/p>\n\n<ul>\n<li>Initial release on WordPress.org. Enjoy!<\/li>\n<\/ul>","raw_excerpt":"Add beautifully designed, customizable blog grids, masonry, and metro layouts to any page using the Elementor page builder \u2014 no coding required.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/109959","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=109959"}],"author":[{"embeddable":true,"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/auburnforest"}],"wp:attachment":[{"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=109959"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=109959"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=109959"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=109959"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=109959"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/mfe.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=109959"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}