{"id":6502243,"date":"2015-09-02T09:19:53","date_gmt":"2015-09-02T09:19:53","guid":{"rendered":"https:\/\/wordpress.org\/support\/topic\/meta-option\/"},"modified":"2016-08-30T17:31:51","modified_gmt":"2016-08-30T17:31:51","slug":"meta-option","status":"publish","type":"topic","link":"https:\/\/wordpress.org\/support\/topic\/meta-option\/","title":{"rendered":"meta option"},"content":{"rendered":"<pre><code>array(\n            &#039;name&#039;      =&gt; &#039;option&#039;,\n            &#039;type&#039;      =&gt; &#039;select&#039;,\n            &#039;label&#039;     =&gt; __( &#039;Option&#039;, &#039;attachments&#039; ),\n            &#039;meta&#039;      =&gt; array(\n                &#039;allow_null&#039;    =&gt; false,\n                &#039;multiple&#039;      =&gt; true,\n                &#039;options&#039;       =&gt; &#039;my_selector_function&#039;,\n            ),\n        )\n\nfunction my_selector_function(){\n    \/\/$categories = get_terms( &#039;portfolio_texonomy&#039;, &#039;orderby=count&amp;hide_empty=0&amp;fields=names&#039; );\n    global $wpdb;\n    $taxonomies = array(\n        &#039;portfolio_texonomy&#039;\n    );\n    $args = array(\n        &#039;orderby&#039;           =&gt; &#039;name&#039;,\n        &#039;order&#039;             =&gt; &#039;ASC&#039;,\n        &#039;hide_empty&#039;        =&gt; 0,\n        &#039;exclude&#039;           =&gt; array(),\n        &#039;exclude_tree&#039;      =&gt; array(),\n        &#039;include&#039;           =&gt; array(),\n        &#039;number&#039;            =&gt; &#039;&#039;,\n        &#039;fields&#039;            =&gt; &#039;all&#039;,\n        &#039;slug&#039;              =&gt; &#039;&#039;,\n        &#039;parent&#039;            =&gt; &#039;&#039;,\n        &#039;hierarchical&#039;      =&gt; true,\n        &#039;child_of&#039;          =&gt; 0,\n        &#039;childless&#039;         =&gt; false,\n        &#039;get&#039;               =&gt; &#039;&#039;,\n        &#039;name__like&#039;        =&gt; &#039;&#039;,\n        &#039;description__like&#039; =&gt; &#039;&#039;,\n        &#039;pad_counts&#039;        =&gt; false,\n        &#039;offset&#039;            =&gt; &#039;&#039;,\n        &#039;search&#039;            =&gt; &#039;&#039;,\n        &#039;cache_domain&#039;      =&gt; &#039;core&#039;\n    );\n\n    $terms = get_terms($taxonomies, $args);\n\n    $_posts = array();\n\n    foreach($terms as $p){\n\n        $_posts[$p-&gt;term_id] = $p-&gt;name;\n    }\n    return $_posts;\n\n}<\/code><\/pre>\n","protected":false},"template":"","class_list":["post-6502243","topic","type-topic","status-publish","hentry"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/topic\/6502243","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/topic"}],"about":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/topic\/6502243\/revisions"}],"wp:attachment":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/media?parent=6502243"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}