View Categories

Developers

3 articles

Hooks & Filters

Last Updated: December 24, 2024

Hooks Introduction Hooks give you or your developer the ability to customize Advanced Sermons further. Everything from adding custom metabox fields, more filter sermon options, and new sections on the single sermon template. Placement This code should be placed in the functions.php file of your active theme or a custom plugin. This allows you to...

Add Custom Taxonomies to Advanced Sermons

Last Updated: November 17, 2024

How To Add Custom Taxonomies to Advanced Sermons Summary In this online documentation, we’ll guide you on how to add custom taxonomies to Advanced Sermons. The method has undergone changes with the introduction of Advanced Sermons 3.0. This guide is intended to help those who had created custom taxonomies prior to the release of Advanced...

How to create a custom extension

Last Updated: November 21, 2024

This is an example on how to create a custom extension in Advanced Sermons // Custom extension module for example add_action('asp_modules_content', 'custom_module_example'); function custom_module_example($modules) { ?> <div class="asp-module"> <div class="asp-module-box"> <div class="module-heading"> <h2 class="module-title">Custom Module</h2> <p>Enable the Custom Module to add extra functionality to your sermons.</p> </div> <div class="status wp-clearfix"> <label class="asp-switch"> <input type="checkbox" name="asp_modules[custom_module]"...