{"id":175298,"date":"2023-06-20T01:35:36","date_gmt":"2023-06-20T01:35:36","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/plus-features-for-advanced-custom-fields\/"},"modified":"2024-04-07T09:45:00","modified_gmt":"2024-04-07T09:45:00","slug":"plus-features-for-advanced-custom-fields","status":"publish","type":"plugin","link":"https:\/\/tah.wordpress.org\/plugins\/plus-features-for-advanced-custom-fields\/","author":20977199,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"1.4.0","stable_tag":"1.4.0","tested":"6.5.8","requires":"5.0","requires_php":"7.0","requires_plugins":null,"header_name":"Plus Features for Advanced Custom Fields","header_author":"the WP Catalyst","header_description":"Adds extra features to Advanced Custom Fields plugin(ACF)","assets_banners_color":"","last_updated":"2024-04-07 09:45:00","external_support_url":"","external_repository_url":"","donate_link":"https:\/\/bmc.link\/thewpcatalyst","header_plugin_uri":"https:\/\/wordpress.org\/plugins\/plus-features-for-advanced-custom-fields","header_author_uri":"https:\/\/profiles.wordpress.org\/thewpcatalyst\/","rating":0,"author_block_rating":0,"active_installs":10,"downloads":2286,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"1.0.0":{"tag":"1.0.0","author":"thewpcatalyst","date":"2023-07-09 16:02:49"},"1.1.0":{"tag":"1.1.0","author":"thewpcatalyst","date":"2023-07-09 16:02:49"},"1.2.0":{"tag":"1.2.0","author":"thewpcatalyst","date":"2023-08-11 15:08:07"},"1.3.0":{"tag":"1.3.0","author":"thewpcatalyst","date":"2023-09-16 12:16:17"},"1.3.1":{"tag":"1.3.1","author":"thewpcatalyst","date":"2023-09-19 17:49:35"},"1.4.0":{"tag":"1.4.0","author":"thewpcatalyst","date":"2024-04-07 09:45:00"}},"upgrade_notice":{"1.4.0":"<p>New: Supports Page Link, Post Object, and Relationship Field types.<\/p>"},"ratings":[],"assets_icons":[],"assets_banners":[],"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0.0","1.1.0","1.2.0","1.3.0","1.3.1","1.4.0"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":2928290,"resolution":"1","location":"assets","locale":""},"screenshot-2.png":{"filename":"screenshot-2.png","revision":2928290,"resolution":"2","location":"assets","locale":""},"screenshot-3.png":{"filename":"screenshot-3.png","revision":2928290,"resolution":"3","location":"assets","locale":""},"screenshot-4.png":{"filename":"screenshot-4.png","revision":2967759,"resolution":"4","location":"assets","locale":""},"screenshot-5.png":{"filename":"screenshot-5.png","revision":2967759,"resolution":"5","location":"assets","locale":""}},"screenshots":{"1":"Dual Range Slider in Admin dashboard post edit.","2":"Dual Range slider field settings.","3":"Settings continuation.","4":"rel=\"nofollow\" on ACF link field type."},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[2211,221136,2217,24888,2565],"plugin_category":[59],"plugin_contributors":[221137],"plugin_business_model":[],"class_list":["post-175298","plugin","type-plugin","status-publish","hentry","plugin_tags-acf","plugin_tags-acfp","plugin_tags-advanced-custom-fields","plugin_tags-dual","plugin_tags-plus","plugin_category-utilities-and-tools","plugin_contributors-thewpcatalyst","plugin_committers-thewpcatalyst"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/plus-features-for-advanced-custom-fields.svg","icon_2x":false,"generated":true},"screenshots":[{"src":"https:\/\/ps.w.org\/plus-features-for-advanced-custom-fields\/assets\/screenshot-1.png?rev=2928290","caption":"Dual Range Slider in Admin dashboard post edit."},{"src":"https:\/\/ps.w.org\/plus-features-for-advanced-custom-fields\/assets\/screenshot-2.png?rev=2928290","caption":"Dual Range slider field settings."},{"src":"https:\/\/ps.w.org\/plus-features-for-advanced-custom-fields\/assets\/screenshot-3.png?rev=2928290","caption":"Settings continuation."},{"src":"https:\/\/ps.w.org\/plus-features-for-advanced-custom-fields\/assets\/screenshot-4.png?rev=2967759","caption":"rel=\"nofollow\" on ACF link field type."},{"src":"https:\/\/ps.w.org\/plus-features-for-advanced-custom-fields\/assets\/screenshot-5.png?rev=2967759","caption":""}],"raw_content":"<!--section=description-->\n<p>Plus Features for Advanced Custom Fields adds a Dual Range Slider field type to the advanced custom field plugin and some basic shortcodes for basic fields in the current post. The Dual Range Slider field type allows you to choose minimum and maximum values.<\/p>\n\n<h3>Usage<\/h3>\n\n<h4>Code<\/h4>\n\n<p>Get Dual range slider value code:<\/p>\n\n<pre><code>if ( function_exists( 'get_field' ) ) {\n    $min_max_array = get_field( 'dual_range_slider' );\n        if ( is_array( $min_max_array ) &amp;&amp; array_key_exists( 'min', $min_max_array ) &amp;&amp; array_key_exists( 'max', $min_max_array ) ) {\n        echo 'Min value is: ' . wp_kses( $min_max_array['min'] , array()) . '&lt;br&gt;';\n        echo 'Max value is: ' . wp_kses( $min_max_array['max'] , array());\n    }\n}\n<\/code><\/pre>\n\n<p>Update Dual range slider PHP code:<\/p>\n\n<pre><code>if(function_exists( 'update_field' ) ){\n    $value=array(\n        'min'=&gt;20,\n        'max'=&gt; 35,\n    );\n    $is_updated=update_field('dual_range_slider_field_name', $value);\n    var_dump($is_updated);\n}\n<\/code><\/pre>\n\n<p>Get link value with nofollow<\/p>\n\n<pre><code>if ( function_exists( 'get_field' ) &amp;&amp; function_exists( 'acfp_get_rel_attr' ) ) {\n    $link = get_field( 'link_field_name' );\n    echo '&lt;pre&gt;';\n    var_dump( $link );\n    echo '&lt;pre&gt;';\n    if ( is_array( $link ) ) {\/\/return format set to array\n        if ( array_key_exists( 'nofollow', $link ) ) {\n            $rel_content        = acfp_get_rel_attr( array( $link['nofollow'] ), false );\n            $allowed_attributes = array(\n                'rel' =&gt; array(),\n            );\n            ?&gt;\n            &lt;a href=\"&lt;?php echo esc_url( $link['url'] ); ?&gt;\" target=\"&lt;?php echo esc_attr( $link['target'] ); ?&gt;\"  &lt;?php echo wp_kses( $rel_content, $allowed_attributes ); ?&gt;&gt;&lt;?php echo esc_html( $link['title'] ); ?&gt;&lt;\/a&gt;\n            &lt;?php\n        } else {\n            ?&gt;\n            &lt;a href=\"&lt;?php echo esc_url( $link['url'] ); ?&gt;\" target=\"&lt;?php echo esc_attr( $link['target'] ); ?&gt;\"&gt;&lt;?php echo esc_html( $link['title'] ); ?&gt;&lt;\/a&gt;\n            &lt;?php\n        }\n    } elseif(is_string( $link )) {\n        echo esc_html( $link );\n    }\n}\n<\/code><\/pre>\n\n<p>Update link value with nofollow<\/p>\n\n<pre><code>if ( function_exists( 'update_field' ) ) {\n    $value      = array (\n        'title' =&gt; 'Sample page',\n        'url' =&gt; 'http:\/\/localhost\/dev\/sample-page\/',\n        'target' =&gt; '_blank',\n        'nofollow' =&gt; 'nofollow',\n    );\n    $is_updated = update_field( 'link_field_name', $value );\n    var_dump( $is_updated );\n}&lt;h3&gt;Objects supported by shortcode&lt;\/h3&gt;\n<\/code><\/pre>\n\n<p>- Current Post (current_post)-&gt; The current post where the field is placed on.<\/p>\n\n<h3>Shortcode supported field types<\/h3>\n\n<p>Below are the supported field types:\n- text\n- textarea\n- email\n- number\n- range\n- email\n- url\n- acfp_dual_range_slider\n- image\n- file\n- WYSIWYG\n- oembed\n- select\n- checkbox\n- radio\n- button_group\n- true_false\n- link\n- Page Link\n- Post Object\n- Relationship<\/p>\n\n<h3>Shortcode Attributes<\/h3>\n\n<h4>field<\/h4>\n\n<p>Specifies field name or field key for the field to be retrieved.\n<strong>Supported in:<\/strong> All supported fields\n<strong>Example:<\/strong> field=\"field_name_or_key\"<\/p>\n\n<h4>object [Optional]<\/h4>\n\n<p>The object where the shortcode should retrieve data from.\n<strong>Supported in:<\/strong> All supported fields.\n<strong>Accepted values:<\/strong> \"current_post\"\n<strong>Example:<\/strong> object=\"current_post\"<\/p>\n\n<h4>field_type [Optional]<\/h4>\n\n<p>Specifies the type of the field you are trying to retrieve.\n<strong>Supported in:<\/strong> All supported fields\n<strong>Example:<\/strong> field_type=\"text\"<\/p>\n\n<h4>empty_message [Optional]<\/h4>\n\n<p>Alternative value when the field is empty.\n<strong>Supported in:<\/strong> select, and checkbox\n<strong>Example:<\/strong> empty_message =\"No value selected.\"<\/p>\n\n<h4>link_text [Optional]<\/h4>\n\n<p>Clickable text to be displayed as a link instead of showing the URL.\n<strong>Supported in:<\/strong> email, url, file\n<strong>Example:<\/strong> link_text=\"Click here\"\n<strong>Overrides:<\/strong> Post title in page link.<\/p>\n\n<h4>format [Optional]<\/h4>\n\n<p>Specifies the format of value to be displayed.\n<strong>Supported in:<\/strong> checkbox, acfp_dual_range_slider, email, number, select, url\n<strong>Example:<\/strong> in URL and email format=\"link\", \nin checkbox, select format=\"ordered_list\" or format=\"unordered_list\", \nin number format=\"separators_decimals\", \nin acfp_dual_range_slider format=\"max\" or format=\"min\"<\/p>\n\n<h4>decimals [Optional]<\/h4>\n\n<p>The number of decimals.\n<strong>Supported in:<\/strong> number\n<strong>Example:<\/strong> decimals=\"4\"<\/p>\n\n<h4>decimal_separator [Optional]<\/h4>\n\n<p>Character to be used in separating decimals.\n<strong>Supported in:<\/strong> number\n<strong>Example:<\/strong> decimal_separator=\".\"<\/p>\n\n<h4>thousands_separator [Optional]<\/h4>\n\n<p>Character to be used in separating thousands.\n<strong>Supported in:<\/strong> number\n<strong>Example:<\/strong> decimal_separator=\",\"<\/p>\n\n<h4>alt [Optional]<\/h4>\n\n<p>Alternative text in case the image fails to load.\n<strong>Supported in:<\/strong> image\n<strong>Example:<\/strong> image=\"my_image\"<\/p>\n\n<h4>width [Optional]<\/h4>\n\n<p>Image width.\n<strong>Supported in:<\/strong> image\n<strong>Example:<\/strong> width=\"100px\"<\/p>\n\n<h4>height [Optional]<\/h4>\n\n<p>Image height.\n<strong>Supported in:<\/strong> image\n<strong>Example:<\/strong> height=\"100px\"<\/p>\n\n<h4>style [Optional]<\/h4>\n\n<p>Style attribute for wrapper tag.\n<strong>Supported in:<\/strong> All supported fields\n<strong>Example:<\/strong> style=\"color:green;text-align:center\"<\/p>\n\n<h4>media_sizes [Optional]<\/h4>\n\n<p>Media sizes.\n<strong>Supported in:<\/strong> image\n<strong>Example:<\/strong> media_sizes=\"(max-width: 600px) 480px, 800px\"<\/p>\n\n<h4>tag_id [Optional]<\/h4>\n\n<p>ID attribute for wrapper tag.\n<strong>Supported in:<\/strong> All supported fields\n<strong>Example:<\/strong> id=\"my-unique-id\"<\/p>\n\n<h4>tag_class [Optional]<\/h4>\n\n<p>Class attribute for wrapper tag.\n<strong>Supported in:<\/strong> All supported fields\n<strong>Example:<\/strong> class=\"my-class-name\"<\/p>\n\n<h4>hide_if_empty [Optional]<\/h4>\n\n<p>Determines whether list tags will not be shown when there is no selected value in the select or checkbox field type.\n<strong>Supported in:<\/strong> checkbox, select\n<strong>Example:<\/strong> hide_if_empty=\"true\"<\/p>\n\n<h4>ordered_list_type [Optional]<\/h4>\n\n<p>Specifies the type of ordered list to be displayed.\n<strong>Supported in:<\/strong> checkbox, select,\n*Accepted values:** \"1\", \"a\" \"A\", \"i\" and \"I\".\n<strong>Example:<\/strong> ordered_list_type=\"a\"<\/p>\n\n<h4>display [Optional]<\/h4>\n\n<p>Specifies whether to display values or labels.\n<strong>Supported in:<\/strong> button group, checkbox, radio, select,\n*Accepted values:** \"labels\", \"values\", \"page_title\"\n<strong>Example:<\/strong> display=\"values\"<\/p>\n\n<h4>wrap_tag [Optional]<\/h4>\n\n<p>Tag to wrap field content.\n<strong>Supported in:<\/strong> All supported fields\n<strong>Example:<\/strong> wrap_tag=\"div\"<\/p>\n\n<h4>checked_content [Optional]<\/h4>\n\n<p>Content to be shown when a checkbox is checked.\n<strong>Supported in:<\/strong> true_false\n<strong>Example:<\/strong> checked_content=\"Field checked\"<\/p>\n\n<h4>unchecked_content [Optional]<\/h4>\n\n<p>Content to be shown when a checkbox is unchecked.\n<strong>Supported in:<\/strong> true_false\n<strong>Example:<\/strong> checked_content=\"Field unchecked\"<\/p>\n\n<h4>rel [Optional]<\/h4>\n\n<p>rel content for links.\n<strong>Supported in:<\/strong> URL, links\n<strong>Example:<\/strong> rel=\"nofollow\"<\/p>\n\n<h4>posts_layout [Optional]<\/h4>\n\n<p>Layout to be used for rendering posts.\n<strong>Supported in:<\/strong> Post Object, Relationship\n<strong>Value 1:<\/strong> simple-grid\n<strong>Value 2:<\/strong> fber-list\n<strong>Value 3:<\/strong> false\n<strong>Example:<\/strong> posts_layout=\"simple-grid\"<\/p>\n\n<h4>post_layout [Optional]<\/h4>\n\n<p>Layout to be used for rendering a post.\n<strong>Supported in:<\/strong> Post Object, Relationship\n<strong>Value 1:<\/strong> simple-card\n<strong>Example:<\/strong> post_layout=\"simple-card\"<\/p>\n\n<h3>Shortcodes Examples<\/h3>\n\n<p>[acfp field=\"text_field_name\" field_type=\"text\"]<\/p>\n\n<p>[acfp field=\"text_area_field_name\" field_type=\"textarea\"]<\/p>\n\n<p>[acfp field=\"range_field_name\" field_type=\"range\" ]<\/p>\n\n<p>[acfp field=\"number_field_name\" field_type=\"number\"]<\/p>\n\n<p>[acfp field=\"number_field_name\" format = \"separators_decimals\" decimal_separator=\",\"  thousands_separator=\".\" decimals=\"4\" field_type=\"number\"]<\/p>\n\n<p>[acfp field=\"email_field_name\" format=\"link\" link_text=\"my email\" field_type=\"email\"]<\/p>\n\n<p>[acfp field=\"email_field_name\"  link_text=\"my email\" field_type=\"email\"]<\/p>\n\n<p>[acfp field=\"url_field_name\" format=\"link\" link_text=\"my link\" field_type=\"url\"]<\/p>\n\n<p>[acfp field=\"url_field_name\"  link_text=\"my link\" field_type=\"url\"]<\/p>\n\n<p>[acfp field=\"dual_range_slider_field_name\"  field_type=\"acfp_dual_range_slider\" format=\"min\"]<\/p>\n\n<p>[acfp field=\"dual_range_slider_field_name\"  field_type=\"acfp_dual_range_slider\" format=\"max\"]<\/p>\n\n<p>[acfp field=\"dual_range_slider_field_name\"  field_type=\"acfp_dual_range_slider\"]<\/p>\n\n<p>[acfp field=\"image_field_name\"  field_type=\"image\" alt=\"A simple image\"]<\/p>\n\n<p>[acfp field=\"image_field_name\"  field_type=\"image\" alt=\"A simple image\" media_sizes=\"(max-width: 600px) 480px, 800px\" tag_id=\"my-img-id\" tag_class=\"my-img-class\" ]<\/p>\n\n<p>[acfp field=\"file_field_name\"  field_type=\"file\" ]<\/p>\n\n<p>[acfp field=\"wysiwyg_field_name\"  field_type=\"wysiwyg\" ]<\/p>\n\n<p>[acfp field=\"oembed_field_name\"  field_type=\"oembed\" ]<\/p>\n\n<p>[acfp field=\"select_field_name\"  field_type=\"select\" ]<\/p>\n\n<p>[acfp field=\"select_field_name\" format=\"unordered_list\" display=\"labels\" field_type=\"select\" ]<\/p>\n\n<p>[acfp field=\"select_field_name\" format=\"unordered_list\" display=\"values\" field_type=\"select\" ]<\/p>\n\n<p>[acfp field=\"select_field_name\" format=\"ordered_list\" display=\"labels\" field_type=\"select\" ]<\/p>\n\n<p>[acfp field=\"select_field_name\" format=\"ordered_list\" display=\"values\" field_type=\"select\" ]<\/p>\n\n<p>[acfp field=\"checkbox_field_name\" format=\"ordered_list\" display=\"values\" field_type=\"checkbox\" ]<\/p>\n\n<p>[acfp field=\"checkbox_field_name\" format=\"ordered_list\" display=\"values\" field_type=\"checkbox\" ]<\/p>\n\n<p>[acfp field=\"radio_button_field_name\" display=\"values\" field_type=\"radio\" ]<\/p>\n\n<p>[acfp field=\"radio_button_field_name\" display=\"labels\" field_type=\"radio\" ]<\/p>\n\n<p>[acfp field=\"button_group_field_name\" display=\"labels\" field_type=\"button_group\" wrap_tag=\"div\"]<\/p>\n\n<p>[acfp field=\"button_group_field_name\" display=\"values\" wrap_tag=\"div\"]<\/p>\n\n<p>[acfp field=\"truefalse_field_name\" field_type=\"true_false\" wrap_tag=\"div\"]<\/p>\n\n<p>[acfp field=\"truefalse_field_name\" field_type=\"true_false\" wrap_tag=\"div\" unchecked_content=\"Unchecked\" checked_content=\"Checked\"]<\/p>\n\n<p>[acfp field=\"link_field_name\"  field_type=\"link\" wrap_tag=\"div\"]<\/p>\n\n<p>[acfp field=\"page_link_field_name\"]<\/p>\n\n<p>[acfp field=\"post_object_field_name\"]<\/p>\n\n<p>[acfp field=\"post_object_field_name\" posts_layout=\"simple-grid\"]<\/p>\n\n<p>[acfp field=\"post_object_field_name\"  posts_layout=\"fber-list\"]<\/p>\n\n<p>[acfp field=\"post_object_field_name\"  posts_layout=\"false\"]<\/p>\n\n<p>[acfp field=\"relationship_field_name\"]<\/p>\n\n<p>[acfp field=\"relationship_field_name\"  posts_layout=\"simple-grid\"]<\/p>\n\n<p>[acfp field=\"relationship_field_name\"  posts_layout=\"fber-list\"]<\/p>\n\n<p>[acfp field=\"relationship_field_name\"  posts_layout=\"false\"]<\/p>\n\n<!--section=installation-->\n<p>Requires <a href=\"https:\/\/wordpress.org\/plugins\/advanced-custom-fields\/\">https:\/\/wordpress.org\/plugins\/advanced-custom-fields\/<\/a> to be installed.<\/p>\n\n<ol>\n<li>Upload <code>acfp<\/code> to the <code>\/wp-content\/plugins\/<\/code> directory<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress<\/li>\n<li>Go to WordPress Admin -&gt; ACF-&gt; Field group -&gt; Select\/edit your preferred field group, on field type go to the <strong>Choice<\/strong> section and select Dual Range Slider.<\/li>\n<li>Define your preferred settings.<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id='how%20can%20i%20utilize%20the%20values%20selected%20in%20the%20dual%20range%20slider%20on%20my%20templates%3F'><h3>How can I utilize the values selected in the dual range slider on my templates?<\/h3><\/dt>\n<dd><p>You can add custom code in your template files as shown below:<\/p>\n\n<pre><code>if ( function_exists( 'get_field' ) ) {\n    $min_max_array = get_field( 'dual_range_slider' );\n    if ( is_array( $min_max_array ) &amp;&amp; array_key_exists( 'min', $min_max_array ) &amp;&amp; array_key_exists( 'max', $min_max_array ) ) {\n        echo 'Min value is: ' . wp_kses( $min_max_array['min'] , array()) . '&lt;br&gt;';\n        echo 'Max value is: ' . wp_kses( $min_max_array['max'] , array());\n    }\n}\n<\/code><\/pre><\/dd>\n<dt id='how%20can%20i%20update%20the%20dual%20range%20slider%20field%20using%20php%20code%3F'><h3>How can I update the dual range slider field using PHP code?<\/h3><\/dt>\n<dd><p>You can update the field using an array with max and min keys as shown below:<\/p>\n\n<pre><code>if(function_exists( 'update_field' ) ){\n    $value=array(\n        'min'=&gt;20,\n        'max'=&gt; 35,\n    );\n    $is_updated=update_field('dual_range_slider_field_name', $value);\n    var_dump($is_updated);\n}\n<\/code><\/pre><\/dd>\n<dt id='how%20can%20i%20stop%20enqueueing%20foundation%20style%3F'><h3>How can I stop enqueueing Foundation style?<\/h3><\/dt>\n<dd><p>You can add the filter below in your theme functions.php:<\/p>\n\n<pre><code>\/\/ Prevents foundation .css from being enqueued.\nadd_filter(\n    'acfp\/settings\/enqueue_foundation_css',\n    function( $value ) {\n        return false;\n    }\n);\n<\/code><\/pre><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.4.0<\/h4>\n\n<p>New: Supports Page Link, Post Object, and Relationship Field types.<\/p>\n\n<h4>1.3.1<\/h4>\n\n<p>Fixed: JavaScript exception.<\/p>\n\n<h4>1.3.0<\/h4>\n\n<p>Added rel=\"nofollow\" on ACF link field type.\nAdded shortcode support for button_group, true_false and link.<\/p>\n\n<h4>1.2.0<\/h4>\n\n<p>The field types below are now supported in acfp shortcode:\n- text\n- textarea\n- email\n- number\n- range\n- email\n- url\n- acfp_dual_range_slider\n- image\n- file\n- WYSIWYG\n- oembed\n- select\n- checkbox\n- radio<\/p>\n\n<h4>1.1.0<\/h4>\n\n<p>Supports ACF shortcode security filters.\nAdded step settings to dual range slider.\nAdded shortcode support for ACF images, files, WYSIWYG, and oEmbed.\nEnhancement- Dual Range slider now has set settings.<\/p>\n\n<h4>1.0.0<\/h4>\n\n<p>Beginning of ACF Plus.<\/p>","raw_excerpt":"Adds Dual range slider to Advanced Custom Fields(ACF) plugin and supports some shortcodes for Email and URL links, Numbers with separators, and text.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/175298","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=175298"}],"author":[{"embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/thewpcatalyst"}],"wp:attachment":[{"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=175298"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=175298"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=175298"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=175298"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=175298"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=175298"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}