This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * [list_searcheable_acf list all the custom fields we want to include in our search query] | |
| * This could easily be something that is added to the admin as a plugin so that users can | |
| * add searchable fields in an options table | |
| * @return [array] [list of custom fields] | |
| */ | |
| function list_searcheable_acf(){ | |
| $list_searcheable_acf = array("title", "sub_title", "excerpt_short", "excerpt_long", "xyz", "myACF"); | |
| return $list_searcheable_acf; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * SIMPLE CALENDAR BOILERPLATE | |
| * this is not meant to be a stantalone widget but to be a starter template to jumpstart your calendar widget (or any widget with a calendar). | |
| * dates can be difficult to work with, so this template is here to make it easier | |
| */ | |
| /* | |
| * BASE WIDGET STYLING | |
| * change the below variables to customize your calendar style | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: brown; icon-glyph: bookmark; | |
| // Useful links | |
| // https://en.wikipedia.org/api/rest_v1/#/Feed/aggregatedFeed | |
| // https://design.wikimedia.org/blog/2021/04/26/bringing-wikipedia-to-the-homescreen-on-ios.html | |
| // https://design.wikimedia.org/blog/assets/uploads/wikipedia-widget/wikipedia-top-read-widget.png | |
| const PREFS = { |
OlderNewer