File tree Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class ACF
1616 *
1717 * @var string
1818 */
19- public $ version = '6.1.4 ' ;
19+ public $ version = '6.1.5 ' ;
2020 /**
2121 * The plugin settings array.
2222 *
@@ -1772,6 +1772,17 @@ public function render_admin_table_column($column_name, $post)
17721772 public function render_admin_table_column_locations ($ field_group )
17731773 {
17741774 }
1775+ /**
1776+ * Renders the number of fields created for the field group in the list table.
1777+ *
1778+ * @since 6.1.5
1779+ *
1780+ * @param array $field_group The main field group array.
1781+ * @return void
1782+ */
1783+ public function render_admin_table_column_num_fields ($ field_group )
1784+ {
1785+ }
17751786 /**
17761787 * Fires when trashing a field group.
17771788 *
@@ -17290,6 +17301,28 @@ function acf_validate_internal_post_type_values($post_type)
1729017301function acf_add_internal_post_type_validation_error ($ name , $ message = '' )
1729117302{
1729217303}
17304+ /**
17305+ * Gets an ACF post type from request args and verifies nonce based on action.
17306+ *
17307+ * @since 6.1.5
17308+ *
17309+ * @param string $action The action being performed.
17310+ * @return array|bool
17311+ */
17312+ function acf_get_post_type_from_request_args ($ action = '' )
17313+ {
17314+ }
17315+ /**
17316+ * Gets an ACF taxonomy from request args and verifies nonce based on action.
17317+ *
17318+ * @since 6.1.5
17319+ *
17320+ * @param string $action The action being performed.
17321+ * @return array|bool
17322+ */
17323+ function acf_get_taxonomy_from_request_args ($ action = '' )
17324+ {
17325+ }
1729317326/**
1729417327 * Returns an array of "ACF only" meta for the given post_id.
1729517328 *
You can’t perform that action at this time.
0 commit comments