Lines:
1 to 89 of 89
<?php // (C) Copyright Bobbing Wide 2013-2018, 2020, 2021 if ( !defined( "BW_FIELDS_INCLUDED" ) ) { define( "BW_FIELDS_INCLUDED", "4.4.0" ); /** * Library: bw_fields * Provides: bw_fields * Depends: on certain oik base functions * */ if ( !function_exists( "bw_query_field_type" ) ) { /* function bw_query_field_type() – Query the field type given the field name */ } if ( !function_exists( "bw_custom_column" ) ) { /* function bw_custom_column_admin() – Format a custom column on admin pages */ /* function bw_custom_column_taxonomy() – Format custom column data for a taxonomy */ /* function bw_custom_column_post_meta() – Format custom column data for post_meta data */ /* function bw_custom_column() – Display a custom column for a post */ /* function bw_format_custom_column() – format a custom column on the admin page IF the column is defined in bw_fields */ /* function bw_pre_theme_field() – Request plugins to load their field theming functions */ /* function bw_theme_field() – Theme a custom field */ /* function bw_theme_field__post_title() – Theme the "post_title" field */ /* function bw_theme_field__post_date */ /* function bw_theme_field__post_modified */ /* function bw_theme_field__date */ /* function bw_theme_field__title() – Theme a ‘title’ field */ /* function bw_theme_field__excerpt() – Theme the "excerpt" */ /* function _bw_theme_field_default() – Default theming of metadata based on field name ( $key ) or content? ( $value ) */ /* function _bw_theme_field_default_bw_header_image() – Default function to display a field of name "bw_header_image" */ /* function bw_label_from_key() – Create a field label given the key name */ /* function bw_format_label() – Format the label for a field */ /* function bw_query_field_label() – Get the label for a field */ /* function bw_format_field() – Theme an array of custom fields */ } // end if ( !function_exists bw_custom_column if ( !function_exists( "bw_default_sep" ) ) { /* function bw_default_sep() – Return the default separator between the field label and field value */ } if ( !function_exists( "bw_format_sep" ) ) { /* function bw_format_sep() – */ } if ( !function_exists( "bw_format_meta" ) ) { /* function bw_format_meta() – Format the meta data for the ‘post’ */ } if ( !function_exists( "bw_format_taxonomy" ) ) { /* function bw_format_taxonomy() – Format a taxonomy for the ‘post’ */ } if ( !function_exists( "bw_theme_object_property" ) ) { /* function bw_theme_object_property() – If the field type is not defined then it’s probably a post object’s property */ } /* function bw_get_field_data() – Return the field data */ /* function bw_determine_post_type_from_hook() – Determines post type from hook */ /* function bw_field_registered_for_object_type() – Returns true if the field name is registered for the object type */ } /* end !defined */View on GitHub View on Trac