fictioneer/functions.php

683 lines
20 KiB
PHP
Raw Normal View History

2023-01-21 01:31:34 +01:00
<?php
// =============================================================================
// DEBUG
// =============================================================================
function fictioneer_display_execution_time() {
// Abort on AJAX
2023-10-24 01:21:10 +02:00
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
return;
}
// Abort on REST
if ( strpos( $_SERVER['REQUEST_URI'], 'wp-json' ) !== false ) {
return;
}
echo '<!-- Execution Time: ' . microtime( true ) - WP_START_TIMESTAMP . ' seconds -->';
}
if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
// This should be set, but just to make sure...
if ( ! defined( 'WP_START_TIMESTAMP' ) ) {
define( 'WP_START_TIMESTAMP', microtime(true) );
}
add_action( 'shutdown', 'fictioneer_display_execution_time' );
}
2023-01-21 01:31:34 +01:00
// =============================================================================
// CONSTANTS/SETTINGS
// =============================================================================
// Version
2024-01-28 02:41:45 +01:00
define( 'FICTIONEER_VERSION', '5.9.3' );
2023-01-21 01:31:34 +01:00
define( 'FICTIONEER_MAJOR_VERSION', '5' );
2024-01-28 02:41:45 +01:00
define( 'FICTIONEER_RELEASE_TAG', 'v5.9.3' );
2023-01-21 01:31:34 +01:00
if ( ! defined( 'CHILD_VERSION' ) ) {
define( 'CHILD_VERSION', false );
2023-01-21 01:31:34 +01:00
}
if ( ! defined( 'CHILD_NAME' ) ) {
define( 'CHILD_NAME', false );
2023-01-21 01:31:34 +01:00
}
/*
* Endpoints
*/
// Endpoint: OAuth 2.0
if ( ! defined( 'FICTIONEER_OAUTH_ENDPOINT' ) ) {
define( 'FICTIONEER_OAUTH_ENDPOINT', 'oauth2' );
}
// Endpoint: EPUBs
if ( ! defined( 'FICTIONEER_EPUB_ENDPOINT' ) ) {
define( 'FICTIONEER_EPUB_ENDPOINT', 'download-epub' );
}
// Endpoint: Logout (disable with false)
if ( ! defined( 'FICTIONEER_LOGOUT_ENDPOINT' ) ) {
define( 'FICTIONEER_LOGOUT_ENDPOINT', 'fictioneer-logout' );
}
/*
* Strings
*/
// String: CSS name of the primary font
if ( ! defined( 'FICTIONEER_PRIMARY_FONT_CSS' ) ) {
define( 'FICTIONEER_PRIMARY_FONT_CSS', 'Open Sans' );
2023-01-21 01:31:34 +01:00
}
// String: Display name of the primary font
if ( ! defined( 'FICTIONEER_PRIMARY_FONT_NAME' ) ) {
define( 'FICTIONEER_PRIMARY_FONT_NAME', 'Open Sans' );
}
// String: TTS regex (used to split text into sentences)
if ( ! defined( 'FICTIONEER_TTS_REGEX' ) ) {
2023-07-09 12:08:34 +02:00
// Note: Because lookbehind assertions do not work in Safari, the script uses a little
// detour to preserve punctuation marks: text.replace(regex, '$1|').split('|')
define( 'FICTIONEER_TTS_REGEX', '([.!?:"\'\u201C\u201D])\s+(?=[A-Z"\'\u201C\u201D])' );
}
2023-08-13 15:05:54 +02:00
// String: Default list of allowed mime types for upload restrictions
define(
'FICTIONEER_DEFAULT_UPLOAD_MIME_TYPE_RESTRICTIONS',
'image/jpeg, image/png, image/webp, image/avif, image/gif, application/pdf, application/epub+zip, application/rtf, text/plain, image/svg+xml'
);
2023-11-10 17:22:35 +01:00
// String: Font Awesome CDN URL
if ( ! defined( 'FICTIONEER_FA_CDN' ) ) {
2024-01-23 11:23:11 +01:00
define( 'FICTIONEER_FA_CDN', 'https://use.fontawesome.com/releases/v6.5.1/css/all.css' );
2023-11-10 17:22:35 +01:00
}
2024-01-23 11:23:11 +01:00
// String: Font Awesome CDN integrity (generated by https://www.srihash.org/)
2023-11-10 17:22:35 +01:00
if ( ! defined( 'FICTIONEER_FA_INTEGRITY' ) ) {
define(
'FICTIONEER_FA_INTEGRITY',
2024-01-23 11:23:11 +01:00
'sha384-t1nt8BQoYMLFN5p42tRAtuAAFQaCQODekUVeKKZrEnEyp4H2R0RHFz0KWpmj7i8g'
2023-11-10 17:22:35 +01:00
);
}
// String: Story page footer date format below 480px
if ( ! defined( 'FICTIONEER_DISCORD_EMBED_COLOR' ) ) {
define( 'FICTIONEER_DISCORD_EMBED_COLOR', '9692513' );
}
// String: Truncation ellipsis
if ( ! defined( 'FICTIONEER_TRUNCATION_ELLIPSIS' ) ) {
define( 'FICTIONEER_TRUNCATION_ELLIPSIS', '…' );
}
// String: Age confirmation redirect
if ( ! defined( 'FICTIONEER_AGE_CONFIRMATION_REDIRECT' ) ) {
define( 'FICTIONEER_AGE_CONFIRMATION_REDIRECT', 'https://search.brave.com/' );
}
/*
* Date Strings
*/
$short_date = get_option( 'fictioneer_subitem_short_date_format', 'M j' ) ?: 'M j';
$long_date = get_option( 'fictioneer_subitem_date_format', "M j, 'y" ) ?: "M j, 'y";
// String: Latest Updates shortcode list item date format
if ( ! defined( 'FICTIONEER_LATEST_UPDATES_LI_DATE' ) ) {
define( 'FICTIONEER_LATEST_UPDATES_LI_DATE', $short_date );
}
// String: Latest Updates shortcode footer date format
if ( ! defined( 'FICTIONEER_LATEST_UPDATES_FOOTER_DATE' ) ) {
define( 'FICTIONEER_LATEST_UPDATES_FOOTER_DATE', $long_date );
}
// String: Latest Chapters shortcode footer date format
if ( ! defined( 'FICTIONEER_LATEST_CHAPTERS_FOOTER_DATE' ) ) {
define( 'FICTIONEER_LATEST_CHAPTERS_FOOTER_DATE', $long_date );
}
// String: Latest Stories shortcode footer date format
if ( ! defined( 'FICTIONEER_LATEST_STORIES_FOOTER_DATE' ) ) {
define( 'FICTIONEER_LATEST_STORIES_FOOTER_DATE', $long_date );
}
// String: Story card list item date format
if ( ! defined( 'FICTIONEER_CARD_STORY_LI_DATE' ) ) {
define( 'FICTIONEER_CARD_STORY_LI_DATE', $long_date );
}
// String: Story card footer date format
if ( ! defined( 'FICTIONEER_CARD_STORY_FOOTER_DATE' ) ) {
define( 'FICTIONEER_CARD_STORY_FOOTER_DATE', $long_date );
}
// String: Chapter card footer date format
if ( ! defined( 'FICTIONEER_CARD_CHAPTER_FOOTER_DATE' ) ) {
define( 'FICTIONEER_CARD_CHAPTER_FOOTER_DATE', $long_date );
}
// String: Collection card list item date format
if ( ! defined( 'FICTIONEER_CARD_COLLECTION_LI_DATE' ) ) {
define( 'FICTIONEER_CARD_COLLECTION_LI_DATE', $long_date );
}
// String: Collection card footer date format
if ( ! defined( 'FICTIONEER_CARD_COLLECTION_FOOTER_DATE' ) ) {
define( 'FICTIONEER_CARD_COLLECTION_FOOTER_DATE', $long_date );
}
// String: Post card footer date format
if ( ! defined( 'FICTIONEER_CARD_POST_FOOTER_DATE' ) ) {
define( 'FICTIONEER_CARD_POST_FOOTER_DATE', $long_date );
}
// String: Page card footer date format
if ( ! defined( 'FICTIONEER_CARD_PAGE_FOOTER_DATE' ) ) {
define( 'FICTIONEER_CARD_PAGE_FOOTER_DATE', $long_date );
}
2023-09-15 22:46:30 +02:00
// String: Article card footer date format
if ( ! defined( 'FICTIONEER_CARD_ARTICLE_FOOTER_DATE' ) ) {
define( 'FICTIONEER_CARD_ARTICLE_FOOTER_DATE', $long_date );
}
// String: Story page footer date format below 480px
if ( ! defined( 'FICTIONEER_STORY_FOOTER_B480_DATE' ) ) {
define( 'FICTIONEER_STORY_FOOTER_B480_DATE', $long_date );
}
2023-01-21 01:31:34 +01:00
/*
* Integers
*/
// Integer: Commentcode expiration timer in seconds (-1 for infinite)
if ( ! defined( 'FICTIONEER_COMMENTCODE_TTL' ) ) {
define( 'FICTIONEER_COMMENTCODE_TTL', 600 );
2023-01-21 01:31:34 +01:00
}
// Integer: AJAX cache TTL in milliseconds
if ( ! defined( 'FICTIONEER_AJAX_TTL' ) ) {
define( 'FICTIONEER_AJAX_TTL', 60000 );
}
// Integer: AJAX login cache TTL in milliseconds
if ( ! defined( 'FICTIONEER_AJAX_LOGIN_TTL' ) ) {
define( 'FICTIONEER_AJAX_LOGIN_TTL', 15000 );
}
// Integer: AJAX POST debounce rate in milliseconds
if ( ! defined( 'FICTIONEER_AJAX_POST_DEBOUNCE_RATE' ) ) {
define( 'FICTIONEER_AJAX_POST_DEBOUNCE_RATE', 700 );
}
// Integer: Author search keyword limit (use simple text input if exceeded)
if ( ! defined( 'FICTIONEER_AUTHOR_KEYWORD_SEARCH_LIMIT' ) ) {
define( 'FICTIONEER_AUTHOR_KEYWORD_SEARCH_LIMIT', 100 );
}
// Integer: Update check timeout
if ( ! defined( 'FICTIONEER_UPDATE_CHECK_TIMEOUT' ) ) {
define( 'FICTIONEER_UPDATE_CHECK_TIMEOUT', 43200 ); // 12 hours
}
2023-02-13 22:48:17 +01:00
// Integer: Storygraph API cache TTL
if ( ! defined( 'FICTIONEER_API_STORYGRAPH_CACHE_TTL' ) ) {
define( 'FICTIONEER_API_STORYGRAPH_CACHE_TTL', 3600 );
}
2023-02-16 13:52:23 +01:00
// Integer: Storygraph API number of stories per page
if ( ! defined( 'FICTIONEER_API_STORYGRAPH_STORIES_PER_PAGE' ) ) {
define( 'FICTIONEER_API_STORYGRAPH_STORIES_PER_PAGE', 10 );
}
// Integer: Maximum number of displayed custom pages
if ( ! defined( 'FICTIONEER_MAX_CUSTOM_PAGES_PER_STORY' ) ) {
define( 'FICTIONEER_MAX_CUSTOM_PAGES_PER_STORY', 4 );
}
// Integer: The number of chapter before and after folding in chapter lists
if ( ! defined( 'FICTIONEER_CHAPTER_FOLDING_THRESHOLD' ) ) {
define( 'FICTIONEER_CHAPTER_FOLDING_THRESHOLD', 5 );
}
// Integer: Expiration time for shortcode Transients (0 for infinite, -1 to disable)
if ( ! defined( 'FICTIONEER_SHORTCODE_TRANSIENT_EXPIRATION' ) ) {
define( 'FICTIONEER_SHORTCODE_TRANSIENT_EXPIRATION', 300 );
}
// Integer: Timeout between refreshes of story comment counts (0 for always)
if ( ! defined( 'FICTIONEER_STORY_COMMENT_COUNT_TIMEOUT' ) ) {
define( 'FICTIONEER_STORY_COMMENT_COUNT_TIMEOUT', 900 );
}
2023-09-01 21:36:18 +02:00
// Integer: Requests per minute
if ( ! defined( 'FICTIONEER_REQUESTS_PER_MINUTE' ) ) {
define( 'FICTIONEER_REQUESTS_PER_MINUTE', 5 );
}
// Integer: Maximum number of IDs in 'post__in' and 'post__not_in' query arguments
// to prevent performance degradation. If exceeded, the whole argument will be
// ignored in certain queries, which account for.
if ( ! defined( 'FICTIONEER_QUERY_ID_ARRAY_LIMIT' ) ) {
define( 'FICTIONEER_QUERY_ID_ARRAY_LIMIT', 100 );
}
// Integer: After how many seconds after saving is a post considered "old"
if ( ! defined( 'FICTIONEER_OLD_POST_THRESHOLD' ) ) {
define( 'FICTIONEER_OLD_POST_THRESHOLD', 30 );
}
2023-01-21 01:31:34 +01:00
/*
* Booleans
*/
// Prevent warnings
if ( ! defined( 'WP_DEBUG' ) ) {
define( 'WP_DEBUG', false );
}
2023-01-21 01:31:34 +01:00
// Boolean: Theme cache purging on post update
if ( ! defined( 'FICTIONEER_CACHE_PURGE_ASSIST' ) ) {
define( 'FICTIONEER_CACHE_PURGE_ASSIST', true );
2023-01-21 01:31:34 +01:00
}
// Boolean: Theme relationship cache purging on post update
if ( ! defined( 'FICTIONEER_RELATIONSHIP_PURGE_ASSIST' ) ) {
define( 'FICTIONEER_RELATIONSHIP_PURGE_ASSIST', true );
2023-01-21 01:31:34 +01:00
}
// Boolean: Cache chapter lists on story pages as Transients
if ( ! defined( 'FICTIONEER_CHAPTER_LIST_TRANSIENTS' ) ) {
define( 'FICTIONEER_CHAPTER_LIST_TRANSIENTS', true );
}
// Boolean: Menu items for search
if ( ! defined( 'FICTIONEER_SHOW_SEARCH_IN_MENUS' ) ) {
define( 'FICTIONEER_SHOW_SEARCH_IN_MENUS', true );
2023-01-21 01:31:34 +01:00
}
// Boolean: Base theme switch in site settings
2023-01-21 01:31:34 +01:00
if ( ! defined( 'FICTIONEER_THEME_SWITCH' ) ) {
define( 'FICTIONEER_THEME_SWITCH', true );
}
// Boolean: Attachment pages
if ( ! defined( 'FICTIONEER_ATTACHMENT_PAGES' ) ) {
define( 'FICTIONEER_ATTACHMENT_PAGES', false );
}
2023-02-08 19:55:16 +01:00
// Boolean: Show OAuth ID Hashes (admin only)
2023-01-21 01:31:34 +01:00
if ( ! defined( 'FICTIONEER_SHOW_OAUTH_HASHES' ) ) {
define( 'FICTIONEER_SHOW_OAUTH_HASHES', false );
}
// Boolean: Show AJAX comment submission disallowed content keys
if ( ! defined( 'FICTIONEER_DISALLOWED_KEY_NOTICE' ) ) {
define( 'FICTIONEER_DISALLOWED_KEY_NOTICE', true );
2023-01-21 01:31:34 +01:00
}
// Boolean: Only allow assigned chapters in stories
// Warning: The chapter navigation always refers to the parent story!
if ( ! defined( 'FICTIONEER_FILTER_STORY_CHAPTERS' ) ) {
define( 'FICTIONEER_FILTER_STORY_CHAPTERS', true );
}
2023-02-16 22:31:31 +01:00
// Boolean: Only show the full comment form after clicking into it
if ( ! defined( 'FICTIONEER_COLLAPSE_COMMENT_FORM' ) ) {
define( 'FICTIONEER_COLLAPSE_COMMENT_FORM', true );
}
2023-02-18 12:10:45 +01:00
// Boolean: Storygraph API image nodes
2023-02-18 01:01:10 +01:00
if ( ! defined( 'FICTIONEER_API_STORYGRAPH_IMAGES' ) ) {
define( 'FICTIONEER_API_STORYGRAPH_IMAGES', true );
}
// Boolean: Storygraph API hotlink permission
2023-02-13 22:48:17 +01:00
if ( ! defined( 'FICTIONEER_API_STORYGRAPH_HOTLINK' ) ) {
define( 'FICTIONEER_API_STORYGRAPH_HOTLINK', false );
}
// Boolean: Storygraph API with chapters in /stories
if ( ! defined( 'FICTIONEER_API_STORYGRAPH_CHAPTERS' ) ) {
define( 'FICTIONEER_API_STORYGRAPH_CHAPTERS', true );
}
// Boolean: Storygraph API Transients caching
if ( ! defined( 'FICTIONEER_API_STORYGRAPH_TRANSIENTS' ) ) {
2023-02-18 13:54:06 +01:00
define( 'FICTIONEER_API_STORYGRAPH_TRANSIENTS', true );
}
2023-08-20 01:19:44 +02:00
// Boolean: Enable sticky cards
2023-08-07 12:07:48 +02:00
if ( ! defined( 'FICTIONEER_ENABLE_STICKY_CARDS' ) ) {
define( 'FICTIONEER_ENABLE_STICKY_CARDS', true );
}
// Boolean: Enable story data meta cache
if ( ! defined( 'FICTIONEER_ENABLE_STORY_DATA_META_CACHE' ) ) {
define( 'FICTIONEER_ENABLE_STORY_DATA_META_CACHE', true );
}
// Boolean: Enable nav menu Transients
if ( ! defined( 'FICTIONEER_ENABLE_MENU_TRANSIENTS' ) ) {
2023-08-26 06:15:59 +02:00
define( 'FICTIONEER_ENABLE_MENU_TRANSIENTS', true );
}
// Boolean: Order stories by last updated chapter timestamp
if ( ! defined( 'FICTIONEER_ORDER_STORIES_BY_LATEST_CHAPTER' ) ) {
define( 'FICTIONEER_ORDER_STORIES_BY_LATEST_CHAPTER', false );
}
2023-11-08 20:03:19 +01:00
// Boolean: Enable tracking of chapter changes in stories
if ( ! defined( 'FICTIONEER_ENABLE_STORY_CHANGELOG' ) ) {
define( 'FICTIONEER_ENABLE_STORY_CHANGELOG', true );
}
// Boolean: Enable showing of outdated browsers' missing features
if ( ! defined( 'FICTIONEER_ENABLE_BROWSER_NOTES' ) ) {
define( 'FICTIONEER_ENABLE_BROWSER_NOTES', true );
}
2024-01-23 11:30:59 +01:00
/*
* Arrays
*/
// Array: Example collection of Font Awesome icons
if ( ! defined( 'FICTIONEER_EXAMPLE_CHAPTER_ICONS' ) ) {
define(
'FICTIONEER_EXAMPLE_CHAPTER_ICONS',
['fa-solid fa-book', 'fa-solid fa-star', 'fa-solid fa-heart', 'fa-solid fa-bomb', 'fa-solid fa-wine-glass',
'fa-solid fa-face-smile', 'fa-solid fa-shield', 'fa-solid fa-ghost', 'fa-solid fa-gear', 'fa-solid fa-droplet',
'fa-solid fa-fire', 'fa-solid fa-radiation', 'fa-solid fa-lemon', 'fa-solid fa-globe', 'fa-solid fa-flask',
'fa-solid fa-snowflake', 'fa-solid fa-cookie-bite', 'fa-solid fa-circle', 'fa-solid fa-square', 'fa-solid fa-moon',
'fa-solid fa-brain', 'fa-solid fa-diamond', 'fa-solid fa-virus', 'fa-solid fa-horse-head', 'fa-solid fa-certificate',
'fa-solid fa-scroll', 'fa-solid fa-spa', 'fa-solid fa-skull']
);
}
// =============================================================================
2023-08-26 02:45:12 +02:00
// FAST REQUESTS
2023-08-21 13:25:25 +02:00
//
// This is significantly faster than even the REST API because it skips most of
// the theme initialization and the init() action. However, this also means you
2023-08-26 02:45:12 +02:00
// cannot use any actions and filters not loaded at this point.
// =============================================================================
2023-08-26 02:45:12 +02:00
require_once __DIR__ . '/includes/functions/_fast_requests.php';
2023-01-21 01:31:34 +01:00
// =============================================================================
// GLOBAL
// =============================================================================
/**
* Provides various utility functions.
*/
require_once __DIR__ . '/includes/functions/_utility.php';
/**
* Modify WordPress functions via hooks.
*/
require_once __DIR__ . '/includes/functions/_wordpress_mods.php';
/**
* Actions whenever a post is created or updated.
*/
require_once __DIR__ . '/includes/functions/_post_updates.php';
2023-01-21 01:31:34 +01:00
/**
* Set up the theme customizer.
*/
require_once __DIR__ . '/includes/functions/_customizer.php';
2023-08-09 12:29:57 +02:00
if ( is_customize_preview() ) {
require_once __DIR__ . '/includes/functions/_customizer-settings.php';
}
2023-01-21 01:31:34 +01:00
/**
* Set up the theme.
*/
require_once __DIR__ . '/includes/functions/_theme_setup.php';
/**
* Add custom post types.
*/
require_once __DIR__ . '/includes/functions/_cpt_and_taxonomies.php';
/**
* Caches and Transients.
2023-01-21 01:31:34 +01:00
*/
require_once __DIR__ . '/includes/functions/_caching_and_transients.php';
2023-01-21 01:31:34 +01:00
/**
* Add custom shortcodes.
2023-01-21 01:31:34 +01:00
*/
require_once __DIR__ . '/includes/functions/_shortcodes.php';
2023-01-21 01:31:34 +01:00
/**
* Generate sitemap.
*/
require_once __DIR__ . '/includes/functions/_sitemap.php';
/**
* Add SEO features to the site.
*/
require_once __DIR__ . '/includes/functions/_seo.php';
/**
* Communicate with the Discord API.
*/
2023-08-20 23:37:44 +02:00
require_once __DIR__ . '/includes/functions/_discord.php';
2023-01-21 01:31:34 +01:00
/**
* Generate ePUBs for stories.
*/
if ( get_option( 'fictioneer_enable_epubs' ) ) {
require_once __DIR__ . '/includes/functions/_epub.php';
}
2023-01-21 01:31:34 +01:00
/**
* Log-in and register subscribers via OAuth 2.0.
*/
require_once __DIR__ . '/includes/functions/_oauth.php';
2023-01-21 01:31:34 +01:00
/**
* Handle comments.
*/
2023-08-22 10:29:53 +02:00
require_once __DIR__ . '/includes/functions/comments/_comments_controller.php'; // Used in REST
require_once __DIR__ . '/includes/functions/comments/_story_comments.php'; // Used in REST
2023-08-25 23:57:24 +02:00
if ( strpos( $_SERVER['REQUEST_URI'], 'wp-json/fictioneer/' ) !== false ) {
require_once __DIR__ . '/includes/functions/comments/_comments_threads.php';
}
2023-08-22 10:29:53 +02:00
if ( is_admin() ) {
// Required for AJAX
require_once __DIR__ . '/includes/functions/comments/_comments_ajax.php';
require_once __DIR__ . '/includes/functions/comments/_comments_form.php';
require_once __DIR__ . '/includes/functions/comments/_comments_threads.php';
require_once __DIR__ . '/includes/functions/comments/_comments_moderation.php';
}
function fictioneer_conditional_require_comments() {
if ( comments_open() ) {
require_once __DIR__ . '/includes/functions/comments/_comments_form.php';
require_once __DIR__ . '/includes/functions/comments/_comments_threads.php';
require_once __DIR__ . '/includes/functions/comments/_comments_moderation.php';
}
}
add_action( 'wp', 'fictioneer_conditional_require_comments' );
2023-01-21 01:31:34 +01:00
/**
* Add functions for users.
*/
require_once __DIR__ . '/includes/functions/users/_user_data.php';
/**
* Add functions to handle avatars.
*/
require_once __DIR__ . '/includes/functions/users/_avatars.php';
/**
* Add the follow feature.
*/
if ( get_option( 'fictioneer_enable_follows' ) ) {
require_once __DIR__ . '/includes/functions/users/_follows.php';
}
2023-01-21 01:31:34 +01:00
/**
* Add the reminders feature.
2023-01-21 01:31:34 +01:00
*/
if ( get_option( 'fictioneer_enable_reminders' ) ) {
require_once __DIR__ . '/includes/functions/users/_reminders.php';
}
2023-01-21 01:31:34 +01:00
/**
* Add the checkmarks features.
*/
if ( get_option( 'fictioneer_enable_checkmarks' ) ) {
require_once __DIR__ . '/includes/functions/users/_checkmarks.php';
}
2023-01-21 01:31:34 +01:00
/**
* Add the bookmarks feature.
2023-01-21 01:31:34 +01:00
*/
2023-08-09 12:29:57 +02:00
if ( get_option( 'fictioneer_enable_bookmarks' ) && is_admin() ) {
// Only used for AJAX
require_once __DIR__ . '/includes/functions/users/_bookmarks.php';
}
2023-01-21 01:31:34 +01:00
/**
* Add content helper functions.
*/
require_once __DIR__ . '/includes/functions/_content_helpers.php';
/**
* Add content query functions.
*/
require_once __DIR__ . '/includes/functions/_query_helpers.php';
/**
* Add content helper functions.
*/
require_once __DIR__ . '/includes/functions/_roles.php';
/**
* Add forms.
*/
require_once __DIR__ . '/includes/functions/_forms.php';
/**
* Add API.
*/
if ( get_option( 'fictioneer_enable_storygraph_api' ) ) {
require_once __DIR__ . '/includes/functions/_api.php';
}
2023-08-08 10:36:47 +02:00
/**
* Add search.
*/
require_once __DIR__ . '/includes/functions/_search.php';
2023-09-04 23:14:44 +02:00
/**
* Generate SEO schema graphs.
*/
if ( get_option( 'fictioneer_enable_seo' ) && ! fictioneer_seo_plugin_active() ) {
require_once __DIR__ . '/includes/functions/_schemas.php';
}
2023-01-21 01:31:34 +01:00
// =============================================================================
// ADMIN ONLY
// =============================================================================
if ( is_admin() ) {
/**
* Functions only required in the admin panel.
2023-01-21 01:31:34 +01:00
*/
require_once __DIR__ . '/includes/functions/_admin.php';
2023-01-21 01:31:34 +01:00
}
// =============================================================================
// FRONTEND ONLY
// =============================================================================
if ( ! is_admin() ) {
/**
* Add general hooks.
*/
require_once __DIR__ . '/includes/functions/hooks/_general_hooks.php';
/**
* Add post and page hooks.
2023-01-21 01:31:34 +01:00
*/
2023-08-09 12:29:57 +02:00
function fictioneer_conditional_require_frontend_hooks() {
if ( is_page_template( 'stories.php' ) || is_singular( 'fcn_story' ) ) {
require_once __DIR__ . '/includes/functions/hooks/_story_hooks.php';
2023-08-09 12:29:57 +02:00
}
if ( is_page_template( 'chapters.php' ) || is_singular( 'fcn_chapter' ) ) {
require_once __DIR__ . '/includes/functions/hooks/_chapter_hooks.php';
2023-08-09 12:29:57 +02:00
}
if ( is_page_template( 'recommendations.php' ) || is_singular( 'fcn_recommendation' ) ) {
require_once __DIR__ . '/includes/functions/hooks/_recommendation_hooks.php';
2023-08-09 12:29:57 +02:00
}
if ( is_page_template( 'collections.php' ) || is_singular( 'fcn_collection' ) ) {
require_once __DIR__ . '/includes/functions/hooks/_collection_hooks.php';
2023-08-09 12:29:57 +02:00
}
if ( is_page_template( 'user-profile.php' ) ) {
require_once __DIR__ . '/includes/functions/hooks/_profile_hooks.php';
2023-08-09 12:29:57 +02:00
}
2023-08-09 12:29:57 +02:00
if ( is_singular( 'post' ) ) {
require_once __DIR__ . '/includes/functions/hooks/_post_hooks.php';
}
}
2023-08-09 12:29:57 +02:00
add_action( 'wp', 'fictioneer_conditional_require_frontend_hooks' );
2023-01-21 01:31:34 +01:00
/**
* Add mobile menu hooks.
*/
require_once __DIR__ . '/includes/functions/hooks/_mobile_menu_hooks.php';
}
?>