{"id":24073,"date":"2022-11-30T06:20:38","date_gmt":"2022-11-30T00:50:38","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/"},"modified":"2022-11-30T06:20:38","modified_gmt":"2022-11-30T00:50:38","slug":"solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/","title":{"rendered":"[Solved] How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-14115476\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"14115476\" data-parentid=\"14115159\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p><em>Full disclosure: I wouldn&#8217;t generally answer this type of question as it&#8217;s incredibly broad and seems to possess very little information; where more is required to truly answer it. However, it got me pondering something I&#8217;ve been wondering about and I&#8217;ve answered it anyway.<\/em><\/p>\n<p><em><strong>In future try and put some more information in your questions, tell us what you&#8217;ve researched and what you&#8217;ve tried and so on. Nobody wants to spend time writing out an answer to someone who wont even do a a quick Google search themselves!<\/strong><\/em><\/p>\n<h2>Breaking it down<\/h2>\n<p>You need to provide some clear requirements &#8211; if you have any that is. If you don&#8217;t have any, then you need to think of some. For example, from breaking down your post the obvious requirements are:<\/p>\n<ol>\n<li><em>You need to&#8230;<\/em> display a button on each page<\/li>\n<li><em>You need to&#8230;<\/em> store data about a users selected pages<\/li>\n<li><em>You need to&#8230;<\/em> retrieve pages associated with a specific user<\/li>\n<li><em>You need to&#8230;<\/em> display those pages on the users profile<\/li>\n<\/ol>\n<h3>Displaying a button<\/h3>\n<p>Have a button in the template; with an associated jQuery event handler for it? This isn&#8217;t an elegant solution as it mixes logic with the view &#8211; making future maintainability and design changes a pain.<\/p>\n<p>In which case, I&#8217;d begin looking at <strong>WordPress Plugin Development<\/strong> &#8211; with the first requirement of the plugin to simply display a button &#8211; as well as output the required jQuery event handlers.<\/p>\n<p><em>For implementing this you could look at existing plugins; easy things like source code viewers would show you how to inject scripts and mark-up into a page. Hell, any plugin should be able to show you how to do this!<\/em><\/p>\n<h3>Storing user data<\/h3>\n<p>This will have to be done in the wordpress database. So once again you could look at other plugins that conduct database operations and build a solution from there; or you could check out <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/codex.wordpress.org\/Function_Reference\">the wordpress plugin &#8216;Function Reference&#8217;<\/a> and set about &#8216;hacking something together&#8217;; it&#8217;s probably best to see how others achieve it first though.<\/p>\n<p>This part of your plugin literally just needs to take the page and the user, that&#8217;s all that really needs to be done.<\/p>\n<h3>Retrieving pages associated with a user<\/h3>\n<p>Ditto the above. You need to be able to take a username or user ID and return the specific pages that this user has clicked on. This could almost be described as just the above in reverse; similarly &#8211; bare this in mind when implementing it!<\/p>\n<h3>Displaying the data to a user<\/h3>\n<p>Think back to the first requirement: <em>displaying a button<\/em>. You need to be able to output specific data to the screen. The lessons learnt from here will come in very useful again.<\/p>\n<h2>So&#8230; With this in mind<\/h2>\n<p>You now have to consider what tools you&#8217;re working with and how confident you really are. I get the impression you haven&#8217;t worked with WordPress before at <em>this<\/em> level &#8211; but have you worked with PHP? jQuery\/Javascript? Do you have an understanding of MySQL and the way WordPress stores data in databases?<\/p>\n<p>Then condense what I&#8217;ve said above and find out:<\/p>\n<ol>\n<li>How a plugin displays data in a WordPress Page.<\/li>\n<li>How a plugin can interact with the database.<\/li>\n<\/ol>\n<p>In the Plugin API you may want to examine <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/codex.wordpress.org\/Plugin_API#Actions\">Actions<\/a> as these appear to provide a wrapper for the core functionality of your plugin. Similarly, examine the available <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/adambrown.info\/p\/wp_hooks\">Hooks<\/a> and determine when which part of your plugin is required to run.<\/p>\n<p>As for database interaction? <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/codex.wordpress.org\/Creating_Tables_with_Plugins\">The WordPress Documentation<\/a> has pretty extensive information on this too.<\/p>\n<p>There are plenty of documents online about plugin development; and <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/pippinsplugins.com\/using-filters-to-alter-html-output\/\">this one<\/a> details how to modify HTML output using filters. A quick google will probably provide you with 95% of what you need to know, the other 5% could probably be gained with a pen and pencil and a 10minute brainstorm.<\/p>\n<p>In conclusion; break down your requirements in to easier chunks and do some research to see how these bits can be achieved. Then plan on how to integrate it all together as one package. It&#8217;s too big a question to provide a whole answer to.<\/p>\n<p>I will confess to never having developed a plugin myself, but I&#8217;ll link you to the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/codex.wordpress.org\/Writing_a_Plugin\">seemingly brilliant documentation<\/a> for it. Similarly, if you haven&#8217;t worked with jQuery before &#8211; here&#8217;s the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/api.jquery.com\/jQuery.ajax\/\">$.ajax() method documentation<\/a>.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">4<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Full disclosure: I wouldn&#8217;t generally answer this type of question as it&#8217;s incredibly broad and seems to possess very little information; where more is required to truly answer it. However, it got me pondering something I&#8217;ve been wondering about and I&#8217;ve answered it anyway. In future try and put some more information in your &#8230; <a title=\"[Solved] How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/\" aria-label=\"More on [Solved] How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[339,597],"class_list":["post-24073","post","type-post","status-publish","format-standard","hentry","category-solved","tag-php","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Solved] How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed] - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Full disclosure: I wouldn&#8217;t generally answer this type of question as it&#8217;s incredibly broad and seems to possess very little information; where more is required to truly answer it. However, it got me pondering something I&#8217;ve been wondering about and I&#8217;ve answered it anyway. In future try and put some more information in your ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-30T00:50:38+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\\\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How would you do in order to have buttons on wordpress page\\\/post that permit to add it to one user profil [closed]\",\"datePublished\":\"2022-11-30T00:50:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\\\/\"},\"wordCount\":786,\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"keywords\":[\"php\",\"wordpress\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\\\/\",\"name\":\"[Solved] How would you do in order to have buttons on wordpress page\\\/post that permit to add it to one user profil [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\"},\"datePublished\":\"2022-11-30T00:50:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How would you do in order to have buttons on wordpress page\\\/post that permit to add it to one user profil [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\\\/\\\/jassweb.com\"],\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/author\\\/jaspritsinghghumangmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed] - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed] - JassWeb","og_description":"[ad_1] Full disclosure: I wouldn&#8217;t generally answer this type of question as it&#8217;s incredibly broad and seems to possess very little information; where more is required to truly answer it. However, it got me pondering something I&#8217;ve been wondering about and I&#8217;ve answered it anyway. In future try and put some more information in your ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/","og_site_name":"JassWeb","article_published_time":"2022-11-30T00:50:38+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed]","datePublished":"2022-11-30T00:50:38+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/"},"wordCount":786,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["php","wordpress"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/","name":"[Solved] How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-11-30T00:50:38+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-would-you-do-in-order-to-have-buttons-on-wordpress-page-post-that-permit-to-add-it-to-one-user-profil-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How would you do in order to have buttons on wordpress page\/post that permit to add it to one user profil [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/24073","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=24073"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/24073\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=24073"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=24073"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=24073"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}