Lines:
1 to 90 of 90
<?php /* Plugin Name: oik-types Plugin URI: https://www.oik-plugins.com/oik-plugins/oik-types Description: oik types - custom post types, fields and taxonomies UI Depends: oik base plugin, oik fields Version: 2.3.0 Author: bobbingwide Author URI: https://www.bobbingwide.com/about-bobbing-wide License: GPL2 Copyright 2013-2022 Bobbing Wide (email : herb@bobbingwide.com ) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2, as published by the Free Software Foundation. You may NOT assume that you can use any other version of the GPL. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The license for this software can likely be found here: http://www.gnu.org/licenses/gpl-2.0.html */ oikcpt_plugin_loaded(); /* function oikcpt_fields_loaded() – Implement "oik_fields_loaded" for oik-types */ /* function oikcpt_adjust_args() – Set the required values for the $args to register_post_type() */ /* function oikcpt_register_post_type() – Register or update a custom post type */ /* function bw_update_archive_stuff() – Handle a change of the has_archive / rewrite setting */ /* function bw_update_post_type_supports() – Update post_type supports features */ /* function bw_update_post_type() – Update the existing post_type with the overrides */ /* function oikfie_fields_loaded() – Implement "oik_fields_loaded" for oik-types fields */ /* function oiktax_fields_loaded() – Implement "oik_fields_loaded" for oik-types taxonomies */ /* function oikf2t_fields_loaded() – Implement "oik_fields_loaded" for field to type relationships */ /* function oikx2t_fields_loaded() – Implement "oik_fields_loaded" for taxonomy to type relationships */ /* function oikfie_register_field() – Register a custom field */ /* function oiktax_register_taxonomy() – Register a custom taxonomy */ /* function oikcpt_admin_menu() – Implement "oik_admin_menu" for oik-types */ /* function oik_types_activation() – Implement "admin_notices" action for oik-types */ /* function oik_types_pre_get_posts() – Implement "pre_get_posts" for oik-types */ /* function oik_types_posts_where() – Implement "posts_where" filter to search for attachments as well */ /* function oik_types_nav_menu_meta_box_object() – Override the default query for Media */ /* function oikcpt_plugin_loaded() – Function performed when oik-types.php is loaded */ /* function oikcpt_wp_loaded */ /* function oik_types_setup_theme() – Implement "setup_theme" for oik-types */ /* function oik_types_register_post_type_args() – Implement "register_post_type_args" filter for oik-types */ /* function oik_types_pre_get_posts_for_archive() – Implement "pre_get_posts" action for oik-types for archive pages */ /* function oik_types_get_archive_posts_per_page() – Retrieves archive_posts_per_page if set. */ /* function oik_types_get_archive_posts_per_page_for_taxonomy() – Returns archive_posts_per_page for a taxonomy query */ /* function oik_types_get_involved_taxonomies_post_types() – Returns array of post_types involved with the taxonomies */ /* function oik_types_posts_orderby() – Order front-end archives by post title */ /* function oik_types_apply_archive_sort */ /* function oik_types_run_oik_types() – Run "oik-types.php" in batch */View on GitHub