{"id":5826388,"date":"2023-11-17T01:25:39","date_gmt":"2023-11-17T01:25:39","guid":{"rendered":"https:\/\/www.wpallimport.com\/?post_type=documentation&#038;p=5826388"},"modified":"2025-12-08T18:37:47","modified_gmt":"2025-12-08T18:37:47","slug":"support-custom-acf-field-types","status":"publish","type":"documentation","link":"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/","title":{"rendered":"Advanced: Support Your Custom ACF Field Types"},"content":{"rendered":"\n<p>Advanced Custom Fields allows you to create your own type of field. This may be necessary to save &amp; load unique data. This guide will teach you how to enable support for these custom field types.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-are-custom-acf-field-types\">What Are Custom ACF Field Types<\/h2>\n\n\n\n<p>These are field types created to handle specific data pieces that can't be handled using the default field types provided by ACF. To learn more about how this works, you can read ACF's documentation: <a href=\"https:\/\/www.advancedcustomfields.com\/resources\/creating-a-new-field-type\/\" target=\"_blank\" rel=\"noreferrer noopener\">Creating a new field type<\/a>.<\/p>\n\n\n\n<p>Following the <a href=\"https:\/\/github.com\/AdvancedCustomFields\/acf-example-field-type\/\" target=\"_blank\" rel=\"noreferrer noopener\">acf-example-field-type<\/a> provided by ACF, we have modified that same example field to be a 'soflyy_field' type instead.<\/p>\n\n\n\n<p>All code examples shared here can be added to your child's theme functions.php file or in a plugin like <a href=\"https:\/\/wordpress.org\/plugins\/code-snippets\/\" target=\"_blank\" rel=\"noreferrer noopener\">Code Snippets<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"define-new-class\">Step 1: Define the New Class Required<\/h2>\n\n\n\n<p>You first define the class to use for your new field type. The code requires that you have a class defined with the expected methods and properties. It must extend the Field class defined in wpai_acf_add_on\\fields\\Field.<\/p>\n\n\n\n<p>As a starting point, we used the existing FieldText class as a template (found in wpai-acf-add-on\/src\/fields\/acf\/FieldText.php).<\/p>\n\n\n\n<p>The class should have, at a minimum:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The $type property.<\/li>\n\n\n\n<li>A 'parse' method.&nbsp;<\/li>\n\n\n\n<li>An 'import' method.<\/li>\n<\/ul>\n\n\n\n<p>Here's our new class to import the new 'soflyy_field' type.<\/p>\n\n\n\n<div class=\"wp-block-wpcodebox-snippet wpcodebox-snippet\" data-language=\"php\"><pre class=\"line-numbers\"><code class=\"language-php\">namespace wpai_acf_add_on\\fields\\acf;\n\nuse wpai_acf_add_on\\ACFService;\nuse wpai_acf_add_on\\fields\\Field;\n\n\/**\n * Class FieldSoflyyField\n * @package wpai_acf_add_on\\fields\\acf\n *\/\nclass FieldSoflyyField extends Field {\n\n    \/**\n     *  Field type key\n     *\/\n    public $type = 'soflyy_field';\n\n    \/**\n     *\n     * Parse field data\n     *\n     * @param $xpath\n     * @param $parsingData\n     * @param array $args\n     *\/\n    public function parse($xpath, $parsingData, $args = array()) {\n        parent::parse($xpath, $parsingData, $args);\n        $values = $this-&gt;getByXPath($xpath);\n        $this-&gt;setOption('values', $values);\n    }\n\n    \/**\n     * @param $importData\n     * @param array $args\n     * @return mixed\n     *\/\n    public function import($importData, $args = array()) {\n        $isUpdated = parent::import($importData, $args);\n        if (!$isUpdated){\n            return FALSE;\n        }\n        ACFService::update_post_meta($this, $this-&gt;getPostID(), $this-&gt;getFieldName(), $this-&gt;getFieldValue());\n    }\n}<\/code><\/pre><\/div>\n\n\n\n<p>When the import runs, the import method from this defined class will be called to handle the actual saving of your custom ACF field type.&nbsp;<\/p>\n\n\n\n<p>We have stored this class file in a small custom WordPress plugin.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"load-new-class\">Step 2: Load the Newly Defined Class<\/h2>\n\n\n\n<p>Use the filter '<a href=\"https:\/\/www.wpallimport.com\/documentation\/action-reference\/#wp_all_import_acf_field_class\" target=\"_blank\" rel=\"noreferrer noopener\">wp_all_import_acf_field_class<\/a>' to load the class you just defined. Here's the code to load the new class FieldSoflyyField that we have just created:<\/p>\n\n\n\n<div class=\"wp-block-wpcodebox-snippet wpcodebox-snippet\" data-language=\"php\"><pre class=\"line-numbers\"><code class=\"language-php\">function my_soflyy_field( $class , $fieldData, $post, $fieldName, $fieldParent ) {\n\tif ($fieldData['type'] == 'soflyy_field'){\n\t\t\/\/ Check if the class is not already defined\n        if (!class_exists('\\wpai_acf_add_on\\fields\\acf\\FieldSoflyyField')) {\n            \/\/ Include the file containing the FieldSoflyyField class from our custom plugin\n            require_once MY_CUSTOM_PLUGIN_ROOT_DIR . '\/classes\/FieldSoflyyField.php';\n        }\n\t\treturn '\\wpai_acf_add_on\\fields\\acf\\FieldSoflyyField';\n\t} else {\n\t\treturn $class;\n\t}\n}\nadd_filter( 'wp_all_import_acf_field_class', 'my_soflyy_field', 10, 5 );<\/code><\/pre><\/div>\n\n\n\n<p>Note that the class you return must already be defined in PHP, as WP All Import will only check if it exists and then create an object using it. It won't try to automatically load the file containing it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"define-acf-view\">Step 3: Define the View in the Import Screen<\/h2>\n\n\n\n<p>Once you've defined the class and enabled it via the correct hook, you can load the PHP view file that will show the input field when this field type is being mapped in Step 3 of the import process.<\/p>\n\n\n\n<p>Here's our SoflyyField.php view file:<\/p>\n\n\n\n<div class=\"wp-block-wpcodebox-snippet wpcodebox-snippet\" data-language=\"php\"><pre class=\"line-numbers\"><code class=\"language-php\">&lt;input\n    type=&quot;text&quot;\n    placeholder=&quot;&quot;\n    value=&quot;&#x3C;?php echo esc_attr( $current_field );?&gt;\"\n    name=\"fields&#x3C;?php echo $field_name;?&gt;[&#x3C;?php echo $field['key'];?&gt;]\"\n    class=\"text widefat rad4\"\/&gt;<\/code><\/pre><\/div>\n\n\n\n<p>For this example, we have uploaded the view file to our small custom WordPress plugin, and then we've loaded that file using the <a href=\"https:\/\/www.wpallimport.com\/documentation\/action-reference\/#wp_all_import_acf_field_view_path_field_type\" target=\"_blank\" rel=\"noreferrer noopener\">wp_all_import_acf_field_view_path_soflyy_field<\/a> hook. Here's the relevant code:<\/p>\n\n\n\n<div class=\"wp-block-wpcodebox-snippet wpcodebox-snippet\" data-language=\"php\"><pre class=\"line-numbers\"><code class=\"language-php\">function my_path_soflyy_field( $filePath, $field ) {\n\t$customFile = MY_CUSTOM_PLUGIN_ROOT_DIR . '\/views\/SoflyyField.php';\n\treturn $customFile;\n}\nadd_filter( 'wp_all_import_acf_field_view_path_soflyy_field', 'my_path_soflyy_field', 10, 2 );<\/code><\/pre><\/div>\n\n\n\n<p>You have to update the filter name and swap 'soflyy_field' with your own field type slug, as this filter name is dynamic.<\/p>\n\n\n\n<p>After including all of the required code, you'll be able to see the correct input field for your new field type when mapping the import template. Here's how our example looks:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example.jpg\" data-rel=\"lightbox-image-0\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img decoding=\"async\" width=\"1024\" height=\"400\" src=\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example-1024x400.jpg\" alt=\"Custom ACF Field Type Soflyy Field Example\" class=\"wp-image-5826441\" srcset=\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example-1024x400.jpg 1024w, https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example-300x117.jpg 300w, https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example-768x300.jpg 768w, https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example-1536x600.jpg 1536w, https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example.jpg 1852w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<div class=\"docs-interstitial\">\n\n    <img decoding=\"async\" src=\"https:\/\/www.wpallimport.com\/wp-content\/plugins\/custom-acf-blocks\/blocks\/docs-interstitial\/img\/octopus-logo.svg\" class=\"docs-interstitial__logo\">    <h3>Import to ACF from any CSV, Excel, and XML<\/h3>\n    <ul><li>Every ACF Field<\/li><li>Any file format<\/li><li>Any data structure<\/li><li>Inline PHP<\/li><li>Images, galleries, repeaters, and more<\/li><li>Woo, Meta Box, JetEngine<\/li><li>Any theme or plugin<\/li><\/ul>\n    <div class=\"docs-interstitial__cta\">\n        <a class=\"docs-interstitial__btn\" href=\"#pricing\" target=\"_self\">View Pricing<\/a>\n                    <a class=\"docs-interstitial__text-link\" href=\"https:\/\/www.wpallimport.com\/import-advanced-custom-fields-acf-csv\/\" target=\"_self\">\n                Product Tour\n                <div class=\"docs-interstitial__text-link-arrow\">\n                    <svg width=\"13\" height=\"11\" viewBox=\"0 0 13 11\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                    <path d=\"M8 1.5L12 5.5L8 9.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path>\n                    <path d=\"M11.5 5.5H1\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"><\/path>\n                    <\/svg>\n                <\/div>\n            <\/a>\n            <\/div>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"other-hooks\">Other Hooks to Enable Support for Your Own ACF Field Type<\/h2>\n\n\n\n<p>Here's more information on the other available hooks that can be used when enabling support for your own ACF field type:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"acf_field_view_dir_soflyy_field\">wp_all_import_acf_field_view_dir_soflyy_field<\/h3>\n\n\n\n<p>Used to specify the location of the header and footer for fields that have ACF v4 and v5 versions, such as checkbox (optional):&nbsp;<\/p>\n\n\n\n<div class=\"wp-block-wpcodebox-snippet wpcodebox-snippet\" data-language=\"php\"><pre class=\"line-numbers\"><code class=\"language-php\"> $header = $fieldDir . DIRECTORY_SEPARATOR . 'header.php';\n $footer = $fieldDir . DIRECTORY_SEPARATOR . 'footer.php';<\/code><\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"acf_field_template_header_path\">wp_all_import_acf_field_template_header_pathsoflyy_field<\/h3>\n\n\n\n<p>Used for the header that appears before the version-specific header used above. Only needed when the default header doesn't meet your requirements.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"acf_field_template_footer_path\">wp_all_import_acf_field_template_footer_pathsoflyy_field<\/h3>\n\n\n\n<p>Used for the footer that appears after the version-specific footer used above. Only needed when the default footer doesn't meet your requirements.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"acf_field_field\">wp_all_import_acf_field_field<\/h3>\n\n\n\n<p>Use the $fieldData['type'] value to determine if you should override the default.<br>This is used to return your custom field object if you don't want to use the default class loading behavior from the hook <a href=\"https:\/\/www.wpallimport.com\/documentation\/action-reference\/#wp_all_import_acf_field_class\" target=\"_blank\" rel=\"noreferrer noopener\">wp_all_import_acf_field_class<\/a> shown above.&nbsp;<\/p>\n\n\n\n<p>Either approach (class or field) requires that you have a class defined with the expected methods and properties, which extends from the Field class defined in the ACF Import Add-On.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Related Docs<\/h2>\n\n\n\n\n\n<p>Learn how to import Advanced Custom Fields using WP All Import.<\/p>\n\n\n\n\n\n<p>Learn more about exporting Advanced Custom Fields with WP All Export.<\/p>\n\n\n\n\n\n<p>Shows you how to use PHP functions or custom PHP functions during import.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This documentation explains how to enable support for your own ACF field type so that it can be imported via WP All Import.<\/p>\n","protected":false},"author":96198,"featured_media":0,"parent":2991596,"menu_order":3,"template":"","tags":[138],"content_author":[213],"search_tags":[],"class_list":["post-5826388","documentation","type-documentation","status-publish","hentry","tag-w-article","content_author-editorial-staff"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Advanced: Support Your Custom ACF Field Types - WP All Import<\/title>\n<meta name=\"description\" content=\"This documentation explains how to enable support for your own ACF field type so that it can be imported via WP All Import.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Advanced: Support Your Custom ACF Field Types - WP All Import\" \/>\n<meta property=\"og:description\" content=\"This documentation explains how to enable support for your own ACF field type so that it can be imported via WP All Import.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/\" \/>\n<meta property=\"og:site_name\" content=\"WP All Import\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/groups\/wpallimport\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-08T18:37:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1852\" \/>\n\t<meta property=\"og:image:height\" content=\"724\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data2\" content=\"Editorial Staff\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/\",\"url\":\"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/\",\"name\":\"Advanced: Support Your Custom ACF Field Types - WP All Import\",\"isPartOf\":{\"@id\":\"https:\/\/www.wpallimport.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example-1024x400.jpg\",\"datePublished\":\"2023-11-17T01:25:39+00:00\",\"dateModified\":\"2025-12-08T18:37:47+00:00\",\"description\":\"This documentation explains how to enable support for your own ACF field type so that it can be imported via WP All Import.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/#primaryimage\",\"url\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example.jpg\",\"contentUrl\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example.jpg\",\"width\":1852,\"height\":724,\"caption\":\"Custom ACF Field Type Soflyy Field Example\"},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.wpallimport.com\/#website\",\"url\":\"https:\/\/www.wpallimport.com\/\",\"name\":\"WP All Import\",\"description\":\"Import XML &amp; CSV to WordPress\",\"publisher\":{\"@id\":\"https:\/\/www.wpallimport.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.wpallimport.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.wpallimport.com\/#organization\",\"name\":\"WP All Import\",\"url\":\"https:\/\/www.wpallimport.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.wpallimport.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2020\/02\/logo-v5-no-text.svg\",\"contentUrl\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2020\/02\/logo-v5-no-text.svg\",\"width\":199,\"height\":37,\"caption\":\"WP All Import\"},\"image\":{\"@id\":\"https:\/\/www.wpallimport.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Advanced: Support Your Custom ACF Field Types - WP All Import","description":"This documentation explains how to enable support for your own ACF field type so that it can be imported via WP All Import.","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:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/","og_locale":"en_US","og_type":"article","og_title":"Advanced: Support Your Custom ACF Field Types - WP All Import","og_description":"This documentation explains how to enable support for your own ACF field type so that it can be imported via WP All Import.","og_url":"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/","og_site_name":"WP All Import","article_author":"https:\/\/www.facebook.com\/groups\/wpallimport","article_modified_time":"2025-12-08T18:37:47+00:00","og_image":[{"width":1852,"height":724,"url":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes","Written by":"Editorial Staff"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/","url":"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/","name":"Advanced: Support Your Custom ACF Field Types - WP All Import","isPartOf":{"@id":"https:\/\/www.wpallimport.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/#primaryimage"},"image":{"@id":"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/#primaryimage"},"thumbnailUrl":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example-1024x400.jpg","datePublished":"2023-11-17T01:25:39+00:00","dateModified":"2025-12-08T18:37:47+00:00","description":"This documentation explains how to enable support for your own ACF field type so that it can be imported via WP All Import.","breadcrumb":{"@id":"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.wpallimport.com\/documentation\/support-custom-acf-field-types\/#primaryimage","url":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example.jpg","contentUrl":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2023\/11\/Custom-ACF-Field-Type-Soflyy-Field-Example.jpg","width":1852,"height":724,"caption":"Custom ACF Field Type Soflyy Field Example"},{"@type":"WebSite","@id":"https:\/\/www.wpallimport.com\/#website","url":"https:\/\/www.wpallimport.com\/","name":"WP All Import","description":"Import XML &amp; CSV to WordPress","publisher":{"@id":"https:\/\/www.wpallimport.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.wpallimport.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.wpallimport.com\/#organization","name":"WP All Import","url":"https:\/\/www.wpallimport.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.wpallimport.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2020\/02\/logo-v5-no-text.svg","contentUrl":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2020\/02\/logo-v5-no-text.svg","width":199,"height":37,"caption":"WP All Import"},"image":{"@id":"https:\/\/www.wpallimport.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/documentation\/5826388","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/documentation"}],"about":[{"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/types\/documentation"}],"author":[{"embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/users\/96198"}],"version-history":[{"count":0,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/documentation\/5826388\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/documentation\/2991596"}],"wp:attachment":[{"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/media?parent=5826388"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/tags?post=5826388"},{"taxonomy":"content_author","embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/content_author?post=5826388"},{"taxonomy":"search_tags","embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/search_tags?post=5826388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}