[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fiRh8Yxj6rLmb1txlil1lr8nccOZdefthStIvv1ukUg8":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":14,"last_updated":15,"tested_up_to":16,"requires_at_least":16,"requires_php":17,"tags":18,"homepage":22,"download_link":23,"security_score":24,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27,"vulnerabilities":28,"developer":29,"crawl_stats":26,"alternatives":33,"analysis":127,"fingerprints":174},"wp-lipsum","WP Lipsum","1.4","dylanized","https:\u002F\u002Fprofiles.wordpress.org\u002Fdylanized\u002F","\u003Cp>WP-Lipsum includes a collection of template fragments representing lots of common page types, from simple lorem ipsum paragraphs to demos of the WP comment system, and more. It works via a simple shortcode or template tag.\u003C\u002Fp>\n\u003Ch4>Using the Shortcode\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>[lipsum]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>This outputs the basic content block. You can edit this in wp-lipsum\u002Ftemplates\u002Fbasic.php.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[lipsum template=aux]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>This outputs the auxilary lipsum page, with tables, definition lists, and more. You can edit this in templates\u002Faux.php.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[lipsum repeat=4]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>This outputs 4 simple paragphs of lorem ipsum text. You can edit the text in templates\u002Fp.php.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[lipsum template=ol repeat=3]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>This loads the ordered list template and displays it 3 times.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[lipsum t=ol r=3]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>You can also use “t” and “r” as parameter shortcuts.\u003C\u002Fp>\n\u003Ch4>Lipsum Templates and Fragments\u003C\u002Fh4>\n\u003Cp>Here are the full pages of lipsum content available:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Basic Content – “basic”\u003C\u002Fli>\n\u003Cli>Aux Content – “aux”\u003C\u002Fli>\n\u003Cli>Blog Demo – “blog”\u003C\u002Fli>\n\u003Cli>Single Post Demo – “single”\u003C\u002Fli>\n\u003Cli>Headline List – “headline_list”\u003C\u002Fli>\n\u003Cli>Gallery Demo – “gallery”\u003C\u002Fli>\n\u003Cli>Portfolio Demo – “portfolio”\u003C\u002Fli>\n\u003Cli>Long Header Examples – “long_headers”\u003C\u002Fli>\n\u003Cli>Short Content Demo – “short”\u003C\u002Fli>\n\u003Cli>Template Fragments\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>You can also call these smaller fragments, and use the “repeat” parameter:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Single Paragraph – “p”\u003C\u002Fli>\n\u003Cli>Unordered List – “ul”\u003C\u002Fli>\n\u003Cli>Ordered List – “ol”\u003C\u002Fli>\n\u003Cli>Definition List – “dl”\u003C\u002Fli>\n\u003Cli>Table Example – “table”\u003C\u002Fli>\n\u003Cli>Blockquote – “blockquote”\u003C\u002Fli>\n\u003Cli>Blog Teaser – “blog_teaser”\u003C\u002Fli>\n\u003Cli>Image (without caption) – “img”\u003C\u002Fli>\n\u003Cli>Image with WP Caption – “caption”\u003C\u002Fli>\n\u003Cli>Code Demo – “code”\u003C\u002Fli>\n\u003Cli>Comments Demo – “comments”\u003C\u002Fli>\n\u003Cli>Gallery Item – “gallery_item”\u003C\u002Fli>\n\u003Cli>List of Headers – “headers”\u003C\u002Fli>\n\u003Cli>Headline Teaser – “headline_teaser”\u003C\u002Fli>\n\u003Cli>Misc Content – “misc”\u003C\u002Fli>\n\u003Cli>Portfolio Item – “portfolio_item”\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>All lipsum template snippets are located in plugins\u002Fwp-lipsum\u002Ftemplates. You can easily add new template files in here, and call them with the “template” attribute.\u003C\u002Fp>\n\u003Cp>Templates use Bedrock conventions, including class names (like .table-style and .post-nav), using H1s and H2s only for titles, and other concepts.\u003C\u002Fp>\n\u003Ch4>Image Dimensions\u003C\u002Fh4>\n\u003Cp>For the image templates, you can also pass in custom dimensions with the “width”, “height” and “align” parameters (shorcuts w, h and a). This works for the img, caption, portfolio & portfolio_item, and gallery & gallery_item templates.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[lipsum template=img width=300 height=150]\n\n[lipsum t=caption w=300 h=150 a=right]\n\n[lipsum t=gallery w=500 h=220]\n\n[lipsum t=portfolio w=100 h=100]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Align can be set to “left”, “right”, “center” or “none”. These parameters default to 200×200, and alignleft.\u003C\u002Fp>\n\u003Ch4>Using the Template Tag\u003C\u002Fh4>\n\u003Cp>You can also call the plugin from your theme code, by using the display_lipsum_template() function:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php display_lipsum_template($template, $repeat); ?>\n\u003C?php display_lipsum_template('basic') ?>\n\u003C?php display_lipsum_template('table', 4) ?>\n\u003C?php display_lipsum_template('caption', 1, 500, 300, 'right') ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>More Info\u003C\u002Fh4>\n\u003Cp>\u003Ca href=\"http:\u002F\u002Fbedrocktheme.com\u002Fwp-lipsum\u002F\" title=\"View the WP-Lipsum homepage here\" rel=\"nofollow ugc\">View the WP-Lipsum homepage here\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>WP-Lipsum is a part of the Bedrock mini-framework, more info at \u003Ca href=\"http:\u002F\u002Fbedrocktheme.com\u002F\" title=\"bedrocktheme.com\" rel=\"nofollow ugc\">bedrocktheme.com\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Follow me at \u003Ca href=\"http:\u002F\u002Fdylanized.com\u002F\" title=\"dylanized.com\" rel=\"nofollow ugc\">dylanized.com\u003C\u002Fa> and \u003Ca href=\"http:\u002F\u002Ftwitter.com\u002Fdylanized\" title=\"@dylanized\" rel=\"nofollow ugc\">@dylanized\u003C\u002Fa>\u003C\u002Fp>\n","WP-Lipsum is a simple plugin for generating dummy text for your WordPress site.",10,3067,20,1,"2012-05-07T12:14:00.000Z","3.3.2","",[19,20,21],"dummy-text","lipsum","lorem-ipsum","http:\u002F\u002Fbedrocktheme.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-lipsum.zip",85,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":7,"display_name":7,"profile_url":8,"plugin_count":14,"total_installs":11,"avg_security_score":24,"avg_patch_time_days":30,"trust_score":31,"computed_at":32},30,84,"2026-04-04T08:50:52.123Z",[34,53,73,91,110],{"slug":35,"name":36,"version":37,"author":38,"author_profile":39,"description":40,"short_description":41,"active_installs":42,"downloaded":43,"rating":44,"num_ratings":45,"last_updated":46,"tested_up_to":47,"requires_at_least":48,"requires_php":17,"tags":49,"homepage":51,"download_link":52,"security_score":24,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"hide-products-count","Hide products count","0.6","Joan Boluda","https:\u002F\u002Fprofiles.wordpress.org\u002Fboluda\u002F","\u003Cp>Hide products count in category view in WooCommerce\u003C\u002Fp>\n","Hide products count in category view in WooCommerce",300,6366,86,6,"2017-04-18T15:02:00.000Z","4.4.34","3.5.0",[50,19,21],"developers","http:\u002F\u002Fboluda.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fhide-products-count.zip",{"slug":54,"name":55,"version":56,"author":57,"author_profile":58,"description":59,"short_description":60,"active_installs":61,"downloaded":62,"rating":61,"num_ratings":63,"last_updated":64,"tested_up_to":65,"requires_at_least":66,"requires_php":17,"tags":67,"homepage":58,"download_link":71,"security_score":72,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"dummy-text-generator","Dummy Text Generator","2.2","Md. Naeem Ahmed Opu","https:\u002F\u002Fprofiles.wordpress.org\u002Fmnaopu\u002F","\u003Cp>This is a simple wordpress Dummy Text plugin. This plugin based on lorem ipsum dummy content.\u003C\u002Fp>\n\u003Cp>shortcode: [dummy-text]\u003C\u002Fp>\n","This is a simple WordPress Dummy Text Generator plugin. This plugin based on lorem ipsum dummy content.",100,8060,2,"2025-01-23T00:17:00.000Z","6.7.5","3.3",[68,69,19,70,21],"dummy-content","dummy-data","generator","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdummy-text-generator.zip",92,{"slug":74,"name":75,"version":76,"author":77,"author_profile":78,"description":79,"short_description":80,"active_installs":61,"downloaded":81,"rating":61,"num_ratings":14,"last_updated":82,"tested_up_to":83,"requires_at_least":84,"requires_php":17,"tags":85,"homepage":89,"download_link":90,"security_score":24,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"lorem-shortcode","lorem shortcode","1.3.3","Per Søderlind","https:\u002F\u002Fprofiles.wordpress.org\u002Fpers\u002F","\u003Cp>The plugin contains two shortcodes, \u003Ccode>[lorem]\u003C\u002Fcode> and \u003Ccode>[loremimage]\u003C\u002Fcode>, the \u003Ccode>[loremimage]\u003C\u002Fcode> shortcode can be nested in the \u003Ccode>[lorem]\u003C\u002Fcode> shortcode. The shortcodes generates dummy text and image when needed.\u003C\u002Fp>\n\u003Ch4>Usage\u003C\u002Fh4>\n\u003Cp>Add the \u003Ccode>[lorem]\u003C\u002Fcode> and\u002For \u003Ccode>[loremimage]\u003C\u002Fcode> shortcode to a post or page, or if the \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fshortcode-ui\u002F\" rel=\"ugc\">Shortcode UI\u003C\u002Fa> plugin is installed and activated, in the visual editor, click \u003Ccode>Add Media->Insert Post Element->Lorem Ipsum\u003C\u002Fcode> to add the shortcode.\u003C\u002Fp>\n\u003Ch4>Parameters, all are optional\u003C\u002Fh4>\n\u003Cp>\u003Cstrong>[lorem]\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>p=”3″ Number of paragraphs. Default is 5\u003C\u002Fli>\n\u003Cli>l=”7″, Number of lines per paragraph. Default is 3\u003C\u002Fli>\n\u003Cli>align=”right” This tells how you’d like to allign a nested shortcode. There are two alternatives, left or right. Default is right\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>[loremimage]\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The loremimage is created using \u003Ca href=\"http:\u002F\u002Fdummyimage.com\u002F\" rel=\"nofollow ugc\">http:\u002F\u002Fdummyimage.com\u002F\u003C\u002Fa>, and hence the shortcode supports the same parameters as \u003Ca href=\"http:\u002F\u002Fdummyimage.com\u002F\" rel=\"nofollow ugc\">http:\u002F\u002Fdummyimage.com\u002F\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>size=”400×400″ Image size. Default is 300×200\u003C\u002Fli>\n\u003Cli>text=”lorem ipsum” Default is empty\u003C\u002Fli>\n\u003Cli>fgcolor=”fff” Image foreground color. Default is “ccc”\u003C\u002Fli>\n\u003Cli>bgcolor=”ccc” Image foreground color. Default is  “eee”\u003C\u002Fli>\n\u003Cli>format=”png”, Image format. Default is “png”\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>I’ve added two additional parameters\u002Fvalues\u003C\u002Fp>\n\u003Cul>\n\u003Cli>size=”thumb” This will create a thumbnail, size based on your WordPress image settings. The thumb links to another image and support Lightbox et al (has attribute \u003Ccode>rel=\"lightbox[lorem]\"\u003C\u002Fcode>).\u003C\u002Fli>\n\u003Cli>style=”padding:5px;” Adds a style to the loremimage. Default is empty\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Example\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>[lorem p=\"1\" l=\"20\"]\n    [loremimage size=\"300x300\" style=\"padding:5px;\"]\n[\u002Florem]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>For more information and screenshots, please see the \u003Ca href=\"http:\u002F\u002Fsoderlind.no\u002Farchives\u002F2010\u002F11\u002F17\u002Florem-shortcode\u002F\" rel=\"nofollow ugc\">plugin home page\u003C\u002Fa>\u003C\u002Fp>\n","The plugin contains two shortcodes, lorem and loremimage, the loremimage shortcode can be nested in the lorem shortcode.",13364,"2016-12-12T21:50:00.000Z","4.7.32","2.8.6",[86,19,21,87,88],"dummy-image","shortcake","shortcode","http:\u002F\u002Fsoderlind.no\u002Farchives\u002F2010\u002F11\u002F17\u002Florem-shortcode\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Florem-shortcode.1.3.3.zip",{"slug":92,"name":93,"version":94,"author":95,"author_profile":96,"description":97,"short_description":98,"active_installs":99,"downloaded":100,"rating":25,"num_ratings":25,"last_updated":101,"tested_up_to":102,"requires_at_least":103,"requires_php":104,"tags":105,"homepage":108,"download_link":109,"security_score":61,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"loremipsum","Lorem Ipsum – Block Editor Dummy Text Autocomplete","1.0.0","Plugin Pizza","https:\u002F\u002Fprofiles.wordpress.org\u002Fpluginpizza\u002F","\u003Cp>The Lorem Ipsum plugin allows you to quickly insert lorem ipsum dummy text or placeholder images into WordPress posts and pages via autocompletion. By typing ‘lorem’ in the block editor an autocompletion options modal is opened where you can select to insert lorem ipsum dummy text or a placeholder image.\u003C\u002Fp>\n\u003Cp>To use Lorem Ipsum, there are only two things you need to do: install and activate the plugin. An autocompleter to insert dummy text and placeholder images becomes available in the block editor without any extra configuration. Lorem Ipsum also works great as a \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fdocumentation\u002Farticle\u002Fmust-use-plugins\u002F\" rel=\"ugc\">must-use plugin\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Usage\u003C\u002Fh3>\n\u003Col>\n\u003Cli>Open the WordPress block editor.\u003C\u002Fli>\n\u003Cli>Type ‘lorem’ in the editor.\u003C\u002Fli>\n\u003Cli>An autocompletion options modal will appear.\u003C\u002Fli>\n\u003Cli>Select the desired lorem ipsum dummy text option or placeholder image type from the modal.\u003C\u002Fli>\n\u003Cli>The chosen dummy text or placeholder image will be inserted into the content.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Floremipsum\u002F?preview=1\" rel=\"ugc\">Try typing the word ‘lorem’ in a preview site\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Bug Reports\u003C\u002Fh3>\n\u003Cp>Do you want to report a bug or suggest a feature for Lorem Ipsum? Best to do so in the \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpluginpizza\u002Floremipsum\u002F\" rel=\"nofollow ugc\">Lorem Ipsum repository on GitHub\u003C\u002Fa>.\u003C\u002Fp>\n","Quickly insert lorem ipsum dummy text or placeholder images via autocompletion in the block editor.",90,1828,"2026-01-02T02:34:00.000Z","6.9.4","4.6","5.3",[106,68,19,21,107],"autocomplete","placeholder","https:\u002F\u002Fgithub.com\u002Fpluginpizza\u002Floremipsum\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Floremipsum.1.0.0.zip",{"slug":111,"name":112,"version":113,"author":114,"author_profile":115,"description":116,"short_description":117,"active_installs":118,"downloaded":119,"rating":61,"num_ratings":14,"last_updated":120,"tested_up_to":121,"requires_at_least":122,"requires_php":17,"tags":123,"homepage":17,"download_link":126,"security_score":24,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"all-the-ipsums","ALL THE IPSUMS!!!","1.0","johnbhartley","https:\u002F\u002Fprofiles.wordpress.org\u002Fjohnbhartley\u002F","\u003Cp>Tired of searching for lorem ipsum text every time you want to toss in some dummy text while developing a site or showing concepts to a client? ALL THE IPSUMS generates lorem ipsum with 7 easy shortcodes (with room to grow!).\u003C\u002Fp>\n\u003Cp>Pick from the following 7 shortcodes to get started with your placeholder text.\u003C\u002Fp>\n\u003Cp>Shortcodes:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>[zombie]\u003C\u002Fli>\n\u003Cli>[bacon]\u003C\u002Fli>\n\u003Cli>[skater]\u003C\u002Fli>\n\u003Cli>[pommie]\u003C\u002Fli>\n\u003Cli>[batman]\u003C\u002Fli>\n\u003Cli>[metaphor]\u003C\u002Fli>\n\u003Cli>[kitty]\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>More ipsums to come! If you’ve got an ipsum that you must have, let me know and I’ll add it in.\u003C\u002Fp>\n","The ultimate lorem ipsum text generator for WordPress. No need for browsing dummy content, just use ALL THE ISPUMS!!!",70,2031,"2014-06-03T15:45:00.000Z","3.7.41","3.8",[19,70,124,125,21],"ipsum","lorem","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fall-the-ipsums.zip",{"attackSurface":128,"codeSignals":138,"taintFlows":161,"riskAssessment":162,"analyzedAt":173},{"hooks":129,"ajaxHandlers":130,"restRoutes":131,"shortcodes":132,"cronEvents":137,"entryPointCount":14,"unprotectedCount":25},[],[],[],[133],{"tag":20,"callback":134,"file":135,"line":136},"display_lipsum","wp_lipsum.php",96,[],{"dangerousFunctions":139,"sqlUsage":140,"outputEscaping":142,"fileOperations":25,"externalRequests":25,"nonceChecks":25,"capabilityChecks":25,"bundledLibraries":160},[],{"prepared":25,"raw":25,"locations":141},[],{"escaped":25,"rawEcho":11,"locations":143},[144,147,148,149,151,152,154,155,156,159],{"file":145,"line":14,"context":146},"templates\\caption.php","raw output",{"file":145,"line":63,"context":146},{"file":145,"line":63,"context":146},{"file":150,"line":63,"context":146},"templates\\gallery_item.php",{"file":150,"line":63,"context":146},{"file":153,"line":14,"context":146},"templates\\img.php",{"file":153,"line":14,"context":146},{"file":153,"line":14,"context":146},{"file":157,"line":158,"context":146},"templates\\portfolio_item.php",3,{"file":157,"line":158,"context":146},[],[],{"summary":163,"deductions":164},"The wp-lipsum plugin, version 1.4, exhibits a generally positive security posture based on the static analysis, with no detected dangerous functions, SQL injection vulnerabilities, or file operations.  The absence of external HTTP requests and bundled libraries further contributes to a reduced attack surface.  However, a significant concern arises from the complete lack of output escaping. This means that any data processed or displayed by the plugin, even if it originates from trusted sources, is not being properly sanitized before being rendered. This creates a substantial risk of Cross-Site Scripting (XSS) vulnerabilities, where malicious scripts could be injected and executed within the user's browser.\n\nThe plugin's vulnerability history is clean, with no known CVEs reported. This, coupled with the absence of critical taint flows and raw SQL queries, suggests a history of good development practices. However, the lack of output escaping is a glaring omission that significantly undermines the otherwise strong security signals. While the plugin has a minimal attack surface and no authentication or permission checks are flagged as missing on entry points, the unescaped output presents a tangible and potentially severe security risk that requires immediate attention.",[165,168,171],{"reason":166,"points":167},"No output escaping detected",8,{"reason":169,"points":170},"No nonce checks detected",5,{"reason":172,"points":170},"No capability checks detected","2026-03-17T00:07:20.543Z",{"wat":175,"direct":184},{"assetPaths":176,"generatorPatterns":181,"scriptPaths":182,"versionParams":183},[177,178,179,180],"\u002Fwp-content\u002Fplugins\u002Fwp-lipsum\u002Ftemplates\u002Fblog_teaser.php","\u002Fwp-content\u002Fplugins\u002Fwp-lipsum\u002Ftemplates\u002Fcomments.php","\u002Fwp-content\u002Fplugins\u002Fwp-lipsum\u002Ftemplates\u002Fheadline_teaser.php","\u002Fwp-content\u002Fplugins\u002Fwp-lipsum\u002Ftemplates\u002Fsingle.php",[],[],[],{"cssClasses":185,"htmlComments":203,"htmlAttributes":204,"restEndpoints":211,"jsGlobals":212,"shortcodeOutput":213},[186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202],"commentlist","byuser","comment-author-admin","bypostauthor","even","thread-even","depth-1","comment-body","vcard","meta-author","meta-date","odd","alt","thread-odd","thread-alt","comment-reply-link","post-nav",[],[205,206,207,208,209,210],"id=\"comment-2\"","id=\"div-comment-2\"","id=\"comment-3\"","id=\"div-comment-3\"","onclick=\"return addComment.moveForm(&quot;div-comment-2&quot;, &quot;2&quot;, &quot;respond&quot;, &quot;94&quot;)\"","onclick=\"return addComment.moveForm(&quot;div-comment-3&quot;, &quot;3&quot;, &quot;respond&quot;, &quot;94&quot;)\"",[],[],[214,215,216,217],"\u003Cdiv class=\"post\">\n\n\t\t\u003Ca class=\"alignleft\" href=\"#\">\n\t\t\t\u003Cimg src=\"http:\u002F\u002Fplacehold.it\u002F150x150\" alt=\"\" \u002F>\n\t\t\u003C\u002Fa>\n\t\t\n\t\t\u003Ch2>\u003Ca href=\"#\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, vivamus bibendum elit id commodo suscipit\u003C\u002Fa>\u003C\u002Fh2>\n\t\t\n\t\t\u003Cp class=\"post-meta\">Posted by \u003Cspan class=\"meta-author\">","\u003Cdiv class=\"post\">\n\t\n\t\u003Ch2>\u003Ca href=\"#\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, vivamus bibendum elit id commodo suscipit\u003C\u002Fa>\u003C\u002Fh2>\n\t\n\t\u003Cp class=\"post-meta\">Posted by \u003Cspan class=\"meta-author\">","\u003Cdiv class=\"post-nav\">\n\t\t\t\u003Cdiv class=\"alignright\">\u003Ca href=\"#\" title=\"\">Next &#187;\u003C\u002Fa>\u003C\u002Fdiv>\t\n\t\u003Cdiv class=\"alignleft\">\u003Ca href=\"#\" title=\"\">&#171; Previous\u003C\u002Fa>\u003C\u002Fdiv>\n\u003C\u002Fdiv>\t\n\n","\u003Col class=\"commentlist\">\n\t\n\t\u003Cli class=\"comment byuser comment-author-admin bypostauthor even thread-even depth-1\" id=\"comment-2\">\n\t\t\t\t\n\t\t\u003Cdiv id=\"div-comment-2\" class=\"comment-body\">\n\t\t\t\u003Cdiv class=\"comment-author vcard\">\n\t\t\t\t\u003Cimg alt=\"\" src=\"http:\u002F\u002Fplacehold.it\u002F32x32\" class=\"avatar avatar-32 photo\" height=\"32\" width=\"32\">\n\t\t\t\t\u003Ccite class=\"fn\">some_user\u003C\u002Fcite> \u003Cspan class=\"says\">says:\u003C\u002Fspan>\n\t\t\t\u003C\u002Fdiv>\n\t\n\t\t\t\u003Cdiv class=\"comment-meta commentmetadata\">\n\t\t\t\t\u003Ca href=\"#\">April 25, 2012 at 7:22 pm\u003C\u002Fa>&nbsp;&nbsp;\u003Ca class=\"comment-edit-link\" href=\"#\" title=\"Edit comment\">(Edit)\u003C\u002Fa>\n\t\t\t\u003C\u002Fdiv>\n\t\n\t\t\t\u003Cp>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sit amet ornare massa. Etiam ac lorem justo. Curabitur ac augue sapien, vel sagittis nisl. Duis pretium condimentum hendrerit. Suspendisse ac tellus dui, venenatis laoreet ligula. Integer sapien est, venenatis vel bibendum quis, consectetur id odio. Curabitur mauris libero, rutrum non pharetra aliquam, suscipit id sapien.\u003C\u002Fp>\n\t\n\t\t\t\u003Cdiv class=\"reply\">\n\t\t\t\t\u003Ca class=\"comment-reply-link\" href=\"#\" onclick=\"return addComment.moveForm(&quot;div-comment-2&quot;, &quot;2&quot;, &quot;respond&quot;, &quot;94&quot;)\">Reply\u003C\u002Fa>\n\t\t\t\u003C\u002Fdiv>\n\t\t\t\n\t\t\u003C\u002Fdiv>\n\n\t\u003C\u002Fli>\n\t\n\t\u003Cli class=\"comment byuser comment-author-admin bypostauthor odd alt thread-odd thread-alt depth-1\" id=\"comment-3\">\n\t\t\n\t\t\u003Cdiv id=\"div-comment-3\" class=\"comment-body\">\n\t\t\n\t\t\t\u003Cdiv class=\"comment-author vcard\">\n\t\t\t\t\u003Cimg alt=\"\" src=\"http:\u002F\u002Fplacehold.it\u002F32x32\" class=\"avatar avatar-32 photo\" height=\"32\" width=\"32\">\t\t\t\t\t\u003Ccite class=\"fn\">some_user\u003C\u002Fcite> \u003Cspan class=\"says\">says:\u003C\u002Fspan>\n\t\t\t\u003C\u002Fdiv>\n\n\t\t\t\u003Cdiv class=\"comment-meta commentmetadata\">\n\t\t\t\t\u003Ca href=\"#\">April 25, 2012 at 7:22 pm\u003C\u002Fa>&nbsp;&nbsp;\u003Ca class=\"comment-edit-link\" href=\"#\" title=\"Edit comment\">(Edit)\u003C\u002Fa>\n\t\t\t\u003C\u002Fdiv>\n\n\t\t\t\u003Cp>Et ligula. Integer sapien est, venenatis vel bibendum quis, consectetur id odio. Curabitur mauris libero, rutrum non pharetra aliquam, suscipit id sapien.\u003C\u002Fp>\n\n\t\t\t\u003Cdiv class=\"reply\">\n\t\t\t\t\u003Ca class=\"comment-reply-link\" href=\"#\" onclick=\"return addComment.moveForm(&quot;div-comment-3&quot;, &quot;3&quot;, &quot;respond&quot;, &quot;94&quot;)\">Reply\u003C\u002Fa>\t\t\t\t\u003C\u002Fdiv>\n\t\t\t\t\n\t\t\u003C\u002Fdiv>\n\t\t\n\t\u003C\u002Fli>\n\t\n\u003C\u002Fol>"]