{"id":4469,"date":"2014-05-19T13:17:12","date_gmt":"2014-05-19T13:17:12","guid":{"rendered":"http:\/\/demo.momizat.net\/goodnews\/?p=331"},"modified":"2014-05-19T13:17:12","modified_gmt":"2014-05-19T13:17:12","slug":"wordpress-tutorial-how-to-create-a-wordpress-themes","status":"publish","type":"post","link":"https:\/\/bulandrashtrawadi.in\/?p=4469","title":{"rendered":"Create A WordPress Themes"},"content":{"rendered":"<p>WordPress themes is the most used and popular blogging platform around the web. Its flexibility, usability and customizability are the main reasons people regard WordPress so high. Another reason is the huge array of themes available for WordPress \u2013 you can create almost anything, from online magazines to advanced e-commerce businesses. wordpress themes You can either get themes for free or pay for them. Of course, you get what you pay for \u2014 yet don\u2019t be too eager to spend your money on something you might not even need. If you\u2019re just starting out with WordPress I suggest reading Choosing a WordPress Theme: Free or Premium? After that you might consider whether you really want to pay for that premium theme. wordpress themes If the answer is no, continue reading and check out these 80 professional, beautiful and free WordPress themes from 2012 \u2014 the best free themes that can be found!<\/p>\n<p>If you started with an HTML ( + CSS) website, you don\u2019t have to throw it all away when moving to WordPress. You can convert your HTML into WordPress and run your (now more powerful) website on the dynamic WordPress platform.<\/p>\n<p>Or maybe that\u2019s not the case. Perhaps you are just wondering how to convert a client\u2019s HTML design into a fully-fledged WordPress theme. Or maybe you would like to learn basic WordPress (+ PHP) programming from the more-familiar HTML side.<\/p>\n<p>Whatever the reason you are here today, this WordPress tutorial will introduce you to the basics of creating a WordPress theme from HTML. So, get a code editor (I use and recommend <a title=\"Notepad++ Editor\" href=\"http:\/\/notepad-plus-plus.org\/\" target=\"_blank\" rel=\"noopener\">Notepad++<\/a>, and <a title=\"SublimeText Editor\" href=\"http:\/\/www.sublimetext.com\/\" target=\"_blank\" rel=\"noopener\">SublimeText<\/a> is another great option) and a browser ready, then follow this simple guide to the end.<\/p>\n<h2>Naming Your WordPress Theme<\/h2>\n<p>First things first, we have to give your theme a unique name, which isn\u2019t necessary if you\u2019re building a theme for your website only. Regardless, we need to name your theme to make it easily identifiable upon installation.<\/p>\n<p><strong>General assumptions at this point:<\/strong><\/p>\n<ul>\n<li>You have your index.html and CSS stylesheet ready. If you don\u2019t have these files, you can <a title=\"Download Sample Files\" href=\"http:\/\/www.wpexplorer.com\/wp-content\/uploads\/testtheme.zip\" target=\"_blank\" rel=\"noopener\">download mine<\/a> for illustration purposes<\/li>\n<li>You have a working WordPress installation with at least one theme e.g. Twenty Fourteen<\/li>\n<li>You have already created a theme folder where you\u2019ll be saving your new WordPress theme <img decoding=\"async\" class=\"wp-smiley\" src=\"http:\/\/www.wpexplorer.com\/wp-content\/themes\/wpexplorer-twenty-fourteen\/images\/smileys\/icon_smile.gif\" alt=\":)\" \/><\/li>\n<\/ul>\n<p>Let\u2019s get back to naming your WordPress theme. Open your code editor and copy-paste the contents of your stylesheet into a new file and save it as <strong>style.css<\/strong> in your theme folder. Add the following information at the very top of the <strong>newly-created style.css<\/strong>:<\/p>\n<div id=\"highlighter_912627\" class=\"syntaxhighlighter  \">\n<div class=\"lines\">\n<div class=\"line alt1\"><\/div>\n<div class=\"line alt1\">\n<pre>\/*Theme Name: Your theme's name\nTheme URI: Your theme's URL\nDescription: A brief description of your theme\nVersion: 1.0 or any other version you want\nAuthor: Your name or WordPress.org's username\nAuthor URI: Your web address\nTags: Tags to locate your theme in the WordPress theme repository\n*\/<\/pre>\n<\/div>\n<div class=\"line alt1\"><strong>Do not leave out the (\/*\u2026*\/) comment tags. <\/strong>Save the changes. This info tells WordPress the name of your theme, the author and complimentary stuff like that. The important part is the theme\u2019s name, which allows you to choose and activate your theme via the WP dashboard.<\/div>\n<\/div>\n<\/div>\n<h2>Breaking Up Your HTML Template into PHP Files<\/h2>\n<p><strong>This tutorial further assumes you have your HTML template arranged left to right: header, content, sidebar, footer. If you have a different design, you might need to play with the code a bit. It\u2019s fun and super easy.<\/strong><\/p>\n<p>The next step involves creating four PHP files. Using your code editor, create index.php, header.php, sidebar.php and footer.php, and save them in your theme folder. All the files are empty at this point, so don\u2019t expect them to do anything. For illustration purposes, I am using the following index.html and CSS stylesheet files:<\/p>\n<p><strong>INDEX.HTML<br \/>\n<\/strong><\/p>\n<p>&nbsp;<\/p>\n<pre>&lt;!DOCTYPE html&gt;\n&lt;head&gt;\n\t\t&lt;meta charset=\"UTF-8\"&gt;\n\t\t&lt;title&gt;How To Convert HTML Template to WordPress Theme - WPExplorer&lt;\/title&gt;\n\t\t&lt;link rel=\"stylesheet\" type=\"text\/css\" media=\"all\" href=\"style.css\"\/&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;div id=\"wrap\"&gt;\n\t\t\t&lt;header class=\"header\"&gt;\n\t\t\t\t&lt;p&gt;This is header section. Put your logo and other details here.&lt;\/p&gt;\n\t\t\t&lt;\/header&gt;&lt;!-- .header --&gt;\n\t\t\t&lt;div class=\"content\"&gt;\n\t\t\t\t&lt;p&gt;This is the main content area.&lt;\/p&gt;\n\t\t\t&lt;\/div&gt;&lt;!-- .content --&gt;\n\t\t\t&lt;div class=\"sidebar\"&gt;\n\t\t\t\t&lt;p&gt;This is the side bar&lt;\/p&gt;\n\t\t\t&lt;\/div&gt;&lt;!-- .sidebar --&gt;\n\t\t\t&lt;footer class=\"footer\"&gt;\n\t\t\t\t&lt;p&gt;And this is the footer.&lt;\/p&gt;\n\t\t\t&lt;\/footer&gt;&lt;!-- .footer --&gt;\n\t\t&lt;\/div&gt;&lt;!-- #wrap --&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>CSS STYLESHEET<\/strong><\/p>\n<div id=\"highlighter_618261\" class=\"syntaxhighlighter  \">\n<div class=\"lines\">\n<div class=\"line alt1\"><\/div>\n<div class=\"line alt1\">\n<pre>#wrap{margin: 0 auto; width:95%; margin-top:-10px; height:100%;}\n.header{width:99.8%; border:1px solid #999;height:135px;}\n.content{width:70%; border:1px solid #999;margin-top:5px;}\n.sidebar{float:right; margin-top:-54px;width:29%; border:1px solid #999;}\n.footer{width:99.8%;border:1px solid #999;margin-top:10px;}<\/pre>\n<\/div>\n<div class=\"line alt1\"><\/div>\n<\/div>\n<\/div>\n<p>You can grab both codes if you have nothing to work with. Just copy-paste them into your code editor, save them, create the four PHP files we just mentioned and get ready for the next part. Open your newly-created (and empty)<strong>header.php<\/strong>. Login into your existing WordPress installation, navigate to <strong>Appearance \u2013&gt;&gt; Editor <\/strong>and open<strong>header.php<\/strong>. Copy all the  code between the &lt;head&gt; tags and paste it into your header.php file. The following is the code I got from the header.php file in Twenty Fourteen theme:<\/p>\n<div class=\"syntax-highlighter-wrap\">\n<div id=\"highlighter_465877\" class=\"syntaxhighlighter  \">\n<div class=\"lines\">\n<div class=\"line alt1\"><\/div>\n<div class=\"line alt1\">\n<pre>&lt;head&gt;\n\t&lt;meta charset=\"&lt;?php bloginfo( 'charset' ); ?&gt;\"&gt;\n\t&lt;meta name=\"viewport\" content=\"width=device-width\"&gt;\n\t&lt;title&gt;&lt;?php wp_title( '|', true, 'right' ); ?&gt;&lt;\/title&gt;\n\t&lt;link rel=\"profile\" href=\"http:\/\/gmpg.org\/xfn\/11\"&gt;\n\t&lt;link rel=\"pingback\" href=\"&lt;?php bloginfo( 'pingback_url' ); ?&gt;\"&gt;\n\t&lt;!--[if lt IE 9]&gt;\n\t&lt;script src=\"&lt;?php echo get_template_directory_uri(); ?&gt;\/js\/html5.js\"&gt;&lt;\/script&gt;\n\t&lt;![endif]--&gt;\n\t&lt;?php wp_head(); ?&gt;\n&lt;\/head&gt;<\/pre>\n<\/div>\n<div class=\"line alt1\"><\/div>\n<\/div>\n<\/div>\n<\/div>\n<p>Then open your <strong>index.html<\/strong> file and copy the header code (i.e. the code in the &lt;div class= \u201cheader\u201d&gt; section) to your header.php just below the &lt;head&gt; tags as shown below:<\/p>\n<div class=\"syntax-highlighter-wrap\">\n<div id=\"highlighter_943435\" class=\"syntaxhighlighter  \">\n<div class=\"lines\">\n<div class=\"line alt1\"><\/div>\n<div class=\"line alt1\">\n<pre>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;meta charset=\"&lt;?php bloginfo( 'charset' ); ?&gt;\"&gt;\n\t\t&lt;meta name=\"viewport\" content=\"width=device-width\"&gt;\n\t\t&lt;title&gt;&lt;?php wp_title( '|', true, 'right' ); ?&gt;&lt;\/title&gt;\n\t\t&lt;link rel=\"profile\" href=\"http:\/\/gmpg.org\/xfn\/11\"&gt;\n\t\t&lt;link rel=\"pingback\" href=\"&lt;?php bloginfo( 'pingback_url' ); ?&gt;\"&gt;\n\t\t&lt;link rel=\"stylesheet\" href=\"&lt;?php bloginfo('stylesheet_url'); ?&gt;\" type=\"text\/css\" \/&gt;\n\t\t&lt;!--[if lt IE 9]&gt;\n\t\t&lt;script src=\"&lt;?php echo get_template_directory_uri(); ?&gt;\/js\/html5.js\"&gt;&lt;\/script&gt;\n\t\t&lt;![endif]--&gt;\n\t\t&lt;?php wp_head(); ?&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;header class=\"header\"&gt;\n\t\t&lt;p&gt;This is header section. Put your logo and other details here.&lt;\/p&gt;\n\t&lt;\/header&gt;<\/pre>\n<\/div>\n<div class=\"line alt1\"><\/div>\n<\/div>\n<\/div>\n<\/div>\n<p>Then add\u2026<\/p>\n<div id=\"highlighter_251044\" class=\"syntaxhighlighter  \">\n<div class=\"lines\">\n<div class=\"line alt1\"><\/div>\n<div class=\"line alt1\">\n<pre>&lt;link rel=\"stylesheet\" href=\"&lt;?php bloginfo('stylesheet_url'); ?&gt;\" type=\"text\/css\" \/&gt;<\/pre>\n<\/div>\n<div class=\"line alt1\"><\/div>\n<div class=\"line alt1\"><\/div>\n<div class=\"line alt1\">\u2026anywhere between the &lt;head&gt; tags in the header.php file to link your stylesheet. Remember also to put the &lt;html&gt; and &lt;body&gt; opening tags in the header.php as shown above. Save all changes.<\/div>\n<\/div>\n<\/div>\n<p>&nbsp;<\/p>\n<h2>Adding Posts<\/h2>\n<p>Your HTML template is about to morph into a WordPress theme. We just need to add your posts. If you have posts on your blog, how would you display them in your custom-made \u201cHTML-to-WordPress\u201d theme? You use a special type of PHP function known as the <strong>Loop<\/strong>. The Loop is just a specialized piece of code that displays your posts and comments wherever you place it.<\/p>\n<p>source : http:\/\/www.wpexplorer.com\/create-wordpress-theme-html-1\/<\/p>\n<blockquote class=\"mom_quote \" style=\"font-family:verdana;font-size:14px;font-style:italic;border-left-color:#dd9933; color:#474747; background-color:#F5F5F5; \"><span class=\"quote-arrow\" style=\"border-left-color:#dd9933;\"><\/span>This Demo Content Brought to you by <a href=\"http:\/\/momizat.com\/\" target=\"_blank\" rel=\"dofollow noopener\">Momizat Team<\/a> <\/blockquote>\n<h2>this is tags and keywords : wordpress themes momizat Tutorial wordpress  templates<\/h2>\n\n\n<div class=\"mom-reveiw-system\">\n    <header class=\"review-header\">\n        <h2>Review Overview<\/h2>\n        <ul class=\"mr-types\">\n\t\t<li class=\"bars\"><i class=\"brankic-icon-chart5\"><\/i><\/li>\t    <li class=\"stars\"><i class=\"fa-icon-star-half-full\"><\/i><\/li>\t    <li class=\"circles\"><i class=\"brankic-icon-chart2\"><\/i><\/li>\t            <\/ul>\n    <\/header>\n <div class=\"review-tab bars-tab\">\n    <div class=\"review-content\">\n\t        <div class=\"review-desc\">\n\t\tThe mini with Retina display easily gets the 10 hours of battery life Apple advertises, and that\u2019s with heavy, constant use; in most cases the battery should easily last three or four days. There <em>is<\/em> one notable exception: with brightness all the way up.        <\/div>\n\t\n    <div class=\"review-area\">\n\n            <div class=\"review-bars\">\n\t\t            <div class=\"mom-bar\">\n                <div class=\"mb-inner\" style=\"width:90%; background: #78bce7;\">\n\t\t\t<span class=\"cr\" style=\"color:;\">Design<\/span>\n\t\t\t<span class=\"mb-score\" style=\"color: #78bce7;\">90%<\/span>\n                <\/div>\n            <\/div>\n\t                <div class=\"mom-bar\">\n                <div class=\"mb-inner\" style=\"width:100%; background: #88d46d;\">\n\t\t\t<span class=\"cr\" style=\"color:;\">Display<\/span>\n\t\t\t<span class=\"mb-score\" style=\"color: #88d46d;\">100%<\/span>\n                <\/div>\n            <\/div>\n\t                <div class=\"mom-bar\">\n                <div class=\"mb-inner\" style=\"width:85%; background: #e7be78;\">\n\t\t\t<span class=\"cr\" style=\"color:;\">Camera(s)<\/span>\n\t\t\t<span class=\"mb-score\" style=\"color: #e7be78;\">85%<\/span>\n                <\/div>\n            <\/div>\n\t                <div class=\"mom-bar\">\n                <div class=\"mb-inner\" style=\"width:81%; background: #e77878;\">\n\t\t\t<span class=\"cr\" style=\"color:;\">Speakers<\/span>\n\t\t\t<span class=\"mb-score\" style=\"color: #e77878;\">81%<\/span>\n                <\/div>\n            <\/div>\n\t                <div class=\"mom-bar\">\n                <div class=\"mb-inner\" style=\"width:100%; background: #e778b9;\">\n\t\t\t<span class=\"cr\" style=\"color:;\">Performance <\/span>\n\t\t\t<span class=\"mb-score\" style=\"color: #e778b9;\">100%<\/span>\n                <\/div>\n            <\/div>\n\t                <div class=\"mom-bar\">\n                <div class=\"mb-inner\" style=\"width:85%; background: #fc4520;\">\n\t\t\t<span class=\"cr\" style=\"color:;\">Software <\/span>\n\t\t\t<span class=\"mb-score\" style=\"color: #fc4520;\">85%<\/span>\n                <\/div>\n            <\/div>\n\t                <div class=\"mom-bar\">\n                <div class=\"mb-inner\" style=\"width:95%; background: #206e82;\">\n\t\t\t<span class=\"cr\" style=\"color:;\">Battery life<\/span>\n\t\t\t<span class=\"mb-score\" style=\"color: #206e82;\">95%<\/span>\n                <\/div>\n            <\/div>\n\t                <div class=\"mom-bar\">\n                <div class=\"mb-inner\" style=\"width:100%; background: #788953;\">\n\t\t\t<span class=\"cr\" style=\"color:;\">Ecosystem <\/span>\n\t\t\t<span class=\"mb-score\" style=\"color: #788953;\">100%<\/span>\n                <\/div>\n            <\/div>\n\t    \n\n        <\/div>\n    <\/div>\n\n    <div class=\"review-summary\">\n        <div class=\"review-score\">\n            <div class=\"score-wrap bars-score\">\n                <span class=\"score\">92%<\/span>\n                <span class=\"score-title\">Most Wanted<\/span>\n            <\/div>\n        <\/div>\n\t\t\t<h3>Summary:<\/h3>\nI\u2019m getting used to the core tenets of iOS 7. I still don\u2019t like the slow animations or the often-needless representations of layers and transparency, but I\u2019ve come to understand the OS for what it is. As we discovered with the iPad Air, though, iOS 7 isn\u2019t finished or polished.\t\n    <\/div>\n    <\/div> <!-- review-content -->\n        <footer class=\"review-footer\">\n        <div class=\"user-rate bars\">\n            <h3  class=\"mom_user_rate_title\"><strong class=\"your_rate\" style=\"display:none;\">Your Rating:<\/strong><strong class=\"user_rate\">User Rating:<\/strong><\/h3>\n\t    <div class=\"user-rate-bar\">\n            \t<div class=\"mom_user_rate\" data-post_id=\"4469\" data-style=\"bars\" data-votes_count=\"962\"><div class=\"ub-inner\" style=\"width:3%;\"><span  style=\"-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;\" \n unselectable=\"on\"\n onselectstart=\"return false;\" \n onmousedown=\"return false;\">3%<\/span><\/div><\/div>\t    <\/div>\n            <span class=\"total-votes\">(<span class=\"tv-count\">962<\/span> votes)<\/span>\n        <\/div>\n    <\/footer> <!-- footer -->\n        <\/div> <!-- bars tab -->\n    <!-- Stars Tab -->\n    <div class=\"review-tab stars-tab\">\n    <div class=\"review-content\">\n\t        <div class=\"review-desc\">\n\t\tThe mini with Retina display easily gets the 10 hours of battery life Apple advertises, and that\u2019s with heavy, constant use; in most cases the battery should easily last three or four days. There <em>is<\/em> one notable exception: with brightness all the way up.        <\/div>\n\t\n    <div class=\"review-area\">\n        <div class=\"mom-stars\">\n\t\t            <div class=\"stars-cr\">\n\t\t                <span class=\"cr\" style=\"color:#78bce7;\">Design<\/span>\n                <div class=\"star-rating mom_review_score\" style=\"color:#78bce7;\"><span style=\"width:90%; color: #78bce7;\"><\/span><\/div>\n\t    <\/div>\n\t                <div class=\"stars-cr\">\n\t\t                <span class=\"cr\" style=\"color:#88d46d;\">Display<\/span>\n                <div class=\"star-rating mom_review_score\" style=\"color:#88d46d;\"><span style=\"width:100%; color: #88d46d;\"><\/span><\/div>\n\t    <\/div>\n\t                <div class=\"stars-cr\">\n\t\t                <span class=\"cr\" style=\"color:#e7be78;\">Camera(s)<\/span>\n                <div class=\"star-rating mom_review_score\" style=\"color:#e7be78;\"><span style=\"width:85%; color: #e7be78;\"><\/span><\/div>\n\t    <\/div>\n\t                <div class=\"stars-cr\">\n\t\t                <span class=\"cr\" style=\"color:#e77878;\">Speakers<\/span>\n                <div class=\"star-rating mom_review_score\" style=\"color:#e77878;\"><span style=\"width:81%; color: #e77878;\"><\/span><\/div>\n\t    <\/div>\n\t                <div class=\"stars-cr\">\n\t\t                <span class=\"cr\" style=\"color:#e778b9;\">Performance <\/span>\n                <div class=\"star-rating mom_review_score\" style=\"color:#e778b9;\"><span style=\"width:100%; color: #e778b9;\"><\/span><\/div>\n\t    <\/div>\n\t                <div class=\"stars-cr\">\n\t\t                <span class=\"cr\" style=\"color:#fc4520;\">Software <\/span>\n                <div class=\"star-rating mom_review_score\" style=\"color:#fc4520;\"><span style=\"width:85%; color: #fc4520;\"><\/span><\/div>\n\t    <\/div>\n\t                <div class=\"stars-cr\">\n\t\t                <span class=\"cr\" style=\"color:#206e82;\">Battery life<\/span>\n                <div class=\"star-rating mom_review_score\" style=\"color:#206e82;\"><span style=\"width:95%; color: #206e82;\"><\/span><\/div>\n\t    <\/div>\n\t                <div class=\"stars-cr\">\n\t\t                <span class=\"cr\" style=\"color:#788953;\">Ecosystem <\/span>\n                <div class=\"star-rating mom_review_score\" style=\"color:#788953;\"><span style=\"width:100%; color: #788953;\"><\/span><\/div>\n\t    <\/div>\n\t            <\/div>\n    <\/div> <!-- review area -->\n\n    <div class=\"review-summary\">\n        <div class=\"review-score\">\n            <div class=\"score-wrap stars-score\">\n                <div class=\"star-rating mom_review_score\"><span style=\"width:92%\"><\/span><\/div>\n                <span class=\"score-title\">Most Wanted<\/span>\n            <\/div>\n        <\/div>\n\t\t\t<h3>Summary:<\/h3>\nI\u2019m getting used to the core tenets of iOS 7. I still don\u2019t like the slow animations or the often-needless representations of layers and transparency, but I\u2019ve come to understand the OS for what it is. As we discovered with the iPad Air, though, iOS 7 isn\u2019t finished or polished.\t    <\/div>\n    <\/div> <!-- review-content -->\n        <footer class=\"review-footer\">\n        <div class=\"user-rate bars user-star-rate\">\n            <h3  class=\"mom_user_rate_title\"><strong class=\"your_rate\" style=\"display:none;\">Your Rating:<\/strong><strong class=\"user_rate\">User Rating:<\/strong><\/h3>\n            <div class=\"user-rate-bar\">\n\t\t<div><div class=\"stars-rate-wrap\"><div class=\"star-rating mom_user_rate\" data-post_id=\"4469\" data-style=\"stars\" data-votes_count=\"962\"><span style=\"width:3%\"><\/span><\/div><em class=\"yr\">0.1\/5<\/em><\/div><\/div>\t    <\/div>\n            <span class=\"total-votes\">(<span class=\"tv-count\">962<\/span> votes)<\/span>\n        <\/div>\n    <\/footer> <!-- footer -->\n        <\/div> <!-- stars tab -->\n        <!-- Circles Bar  -->\n        <div class=\"review-tab circles-tab\">\n    <div class=\"review-content\">\n\t        <div class=\"review-desc\">\n\t\tThe mini with Retina display easily gets the 10 hours of battery life Apple advertises, and that\u2019s with heavy, constant use; in most cases the battery should easily last three or four days. There <em>is<\/em> one notable exception: with brightness all the way up.        <\/div>\n\t\n    <div class=\"review-area\">\n        <div class=\"review-circles\">\n\t\t            <div class=\"review-circle\">\n\t\t<div class=\"circle\">\n <input type=\"text\" class=\"rc-value\" data-width=\"147\" data-height=\"90\" data-angleArc=\"200\" data-angleOffset=\"-100\" data-readOnly=\"true\" value=\"90\" data-thickness=\".25\" data-fgColor=\"#78bce7\" data-bgColor=\"#eee\">\n                    <span class=\"val\" style=\"color:#78bce7;\">90%<\/span>\n                <\/div>\n\t\t                <span class=\"cr\" style=\"color:#78bce7;\">Design<\/span>\n            <\/div> <!-- circle -->\n\t\t            <div class=\"review-circle\">\n\t\t<div class=\"circle\">\n <input type=\"text\" class=\"rc-value\" data-width=\"147\" data-height=\"90\" data-angleArc=\"200\" data-angleOffset=\"-100\" data-readOnly=\"true\" value=\"100\" data-thickness=\".25\" data-fgColor=\"#88d46d\" data-bgColor=\"#eee\">\n                    <span class=\"val\" style=\"color:#88d46d;\">100%<\/span>\n                <\/div>\n\t\t                <span class=\"cr\" style=\"color:#88d46d;\">Display<\/span>\n            <\/div> <!-- circle -->\n\t\t            <div class=\"review-circle\">\n\t\t<div class=\"circle\">\n <input type=\"text\" class=\"rc-value\" data-width=\"147\" data-height=\"90\" data-angleArc=\"200\" data-angleOffset=\"-100\" data-readOnly=\"true\" value=\"85\" data-thickness=\".25\" data-fgColor=\"#e7be78\" data-bgColor=\"#eee\">\n                    <span class=\"val\" style=\"color:#e7be78;\">85%<\/span>\n                <\/div>\n\t\t                <span class=\"cr\" style=\"color:#e7be78;\">Camera(s)<\/span>\n            <\/div> <!-- circle -->\n\t\t            <div class=\"review-circle\">\n\t\t<div class=\"circle\">\n <input type=\"text\" class=\"rc-value\" data-width=\"147\" data-height=\"90\" data-angleArc=\"200\" data-angleOffset=\"-100\" data-readOnly=\"true\" value=\"81\" data-thickness=\".25\" data-fgColor=\"#e77878\" data-bgColor=\"#eee\">\n                    <span class=\"val\" style=\"color:#e77878;\">81%<\/span>\n                <\/div>\n\t\t                <span class=\"cr\" style=\"color:#e77878;\">Speakers<\/span>\n            <\/div> <!-- circle -->\n\t\t            <div class=\"review-circle\">\n\t\t<div class=\"circle\">\n <input type=\"text\" class=\"rc-value\" data-width=\"147\" data-height=\"90\" data-angleArc=\"200\" data-angleOffset=\"-100\" data-readOnly=\"true\" value=\"100\" data-thickness=\".25\" data-fgColor=\"#e778b9\" data-bgColor=\"#eee\">\n                    <span class=\"val\" style=\"color:#e778b9;\">100%<\/span>\n                <\/div>\n\t\t                <span class=\"cr\" style=\"color:#e778b9;\">Performance <\/span>\n            <\/div> <!-- circle -->\n\t\t            <div class=\"review-circle\">\n\t\t<div class=\"circle\">\n <input type=\"text\" class=\"rc-value\" data-width=\"147\" data-height=\"90\" data-angleArc=\"200\" data-angleOffset=\"-100\" data-readOnly=\"true\" value=\"85\" data-thickness=\".25\" data-fgColor=\"#fc4520\" data-bgColor=\"#eee\">\n                    <span class=\"val\" style=\"color:#fc4520;\">85%<\/span>\n                <\/div>\n\t\t                <span class=\"cr\" style=\"color:#fc4520;\">Software <\/span>\n            <\/div> <!-- circle -->\n\t\t            <div class=\"review-circle\">\n\t\t<div class=\"circle\">\n <input type=\"text\" class=\"rc-value\" data-width=\"147\" data-height=\"90\" data-angleArc=\"200\" data-angleOffset=\"-100\" data-readOnly=\"true\" value=\"95\" data-thickness=\".25\" data-fgColor=\"#206e82\" data-bgColor=\"#eee\">\n                    <span class=\"val\" style=\"color:#206e82;\">95%<\/span>\n                <\/div>\n\t\t                <span class=\"cr\" style=\"color:#206e82;\">Battery life<\/span>\n            <\/div> <!-- circle -->\n\t\t            <div class=\"review-circle\">\n\t\t<div class=\"circle\">\n <input type=\"text\" class=\"rc-value\" data-width=\"147\" data-height=\"90\" data-angleArc=\"200\" data-angleOffset=\"-100\" data-readOnly=\"true\" value=\"100\" data-thickness=\".25\" data-fgColor=\"#788953\" data-bgColor=\"#eee\">\n                    <span class=\"val\" style=\"color:#788953;\">100%<\/span>\n                <\/div>\n\t\t                <span class=\"cr\" style=\"color:#788953;\">Ecosystem <\/span>\n            <\/div> <!-- circle -->\n\t\t        <\/div><!-- circles -->\n    <\/div>\n\n    <div class=\"review-summary\">\n        <div class=\"review-score\">\n            <div class=\"score-wrap circles-score\">\n\n            <div class=\"review-circle\">\n                <div class=\"circle\">\n                    <input type=\"text\" class=\"rc-value\" data-width=\"122\" data-height=\"76\" data-angleArc=\"200\" data-angleOffset=\"-100\" data-readOnly=\"true\" value=\"92\" data-thickness=\".25\" data-fgcolor=\"#4A525D\" data-bgColor=\"#eee\">\n\n\t\t    <span class=\"val\">92%<\/span>\n                <\/div>\n                <span class=\"cr\">Most Wanted<\/span>\n            <\/div> <!-- circle -->\n\n            <\/div>\n        <\/div>\n\t\t\t<h3>Summary:<\/h3>\nI\u2019m getting used to the core tenets of iOS 7. I still don\u2019t like the slow animations or the often-needless representations of layers and transparency, but I\u2019ve come to understand the OS for what it is. As we discovered with the iPad Air, though, iOS 7 isn\u2019t finished or polished.\t\n    <\/div>\n    <\/div> <!-- review-content -->\n        <footer class=\"review-footer\">\n        <div class=\"user-rate\">\n            <h3  class=\"mom_user_rate_title\"><strong class=\"your_rate\" style=\"display:none;\">Your Rating:<\/strong><strong class=\"user_rate\">User Rating:<\/strong><\/h3>\n            <div class=\"user-rate-circle\">\n\t\t<div class=\"circle mom_user_rate_cr\" data-post_id=\"4469\" data-style=\"bars\" data-votes_count=\"962\"><input type=\"text\" class=\"urc-value\" data-width=\"80\" data-height=\"45\" data-angleArc=\"200\" data-angleOffset=\"-100\" value=\"3\" data-thickness=\".25\" data-fgcolor=\"#4A525D\" data-bgColor=\"#eee\"><span class=\"cru-score\"><span class=\"cru-num\">3<\/span>%<\/span><\/div>            <\/div>\n            <span class=\"total-votes\">(<span class=\"tv-count\">962<\/span> votes)<\/span>\n        <\/div>\n    <\/footer> <!-- footer -->\n        <\/div> <!-- Circles tab -->\n    <\/div> <!-- mom Review -->\n\n","protected":false},"excerpt":{"rendered":"<p>WordPress themes is the most used and popular blogging platform around the web. Its flexibility, usability and customizability are the main reasons people regard WordPress so high. Another reason is the huge array of themes available for WordPress \u2013 you can create almost anything, from online magazines to advanced e-commerce businesses. wordpress themes You can [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":354,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[1],"tags":[75,78,79,80,83],"_links":{"self":[{"href":"https:\/\/bulandrashtrawadi.in\/index.php?rest_route=\/wp\/v2\/posts\/4469"}],"collection":[{"href":"https:\/\/bulandrashtrawadi.in\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bulandrashtrawadi.in\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bulandrashtrawadi.in\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bulandrashtrawadi.in\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4469"}],"version-history":[{"count":0,"href":"https:\/\/bulandrashtrawadi.in\/index.php?rest_route=\/wp\/v2\/posts\/4469\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bulandrashtrawadi.in\/index.php?rest_route=\/wp\/v2\/media\/354"}],"wp:attachment":[{"href":"https:\/\/bulandrashtrawadi.in\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4469"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bulandrashtrawadi.in\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4469"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bulandrashtrawadi.in\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4469"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}