Changeset 3387614
- Timestamp:
- 10/31/2025 11:36:43 AM (5 months ago)
- Location:
- esolleso-daily-bible-reading-plan
- Files:
-
- 4 added
- 2 edited
-
tags/1.0.0/assets/screenshot-3.png (added)
-
tags/1.0.0/assets/screenshot-4.png (added)
-
tags/1.0.0/readme.txt (modified) (4 diffs)
-
trunk/assets/screenshot-3.png (added)
-
trunk/assets/screenshot-4.png (added)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
esolleso-daily-bible-reading-plan/tags/1.0.0/readme.txt
r3387609 r3387614 1 1 === Bible Daily Reading Plan === 2 Contributors: Esaia , Daniel2 Contributors: Esaia 3 3 Tags: bible, reading plan, christianity, scripture, devotional 4 4 Requires at least: 5.0 … … 23 23 * **Easy to Follow** - Simple, intuitive reading schedule 24 24 * **Flexible Structure** - Supports partial chapter readings when needed 25 26 You can also create your own **custom reading plans** by modifying data directly from plugin adminpanel, to fit your specific needs (chronological order, thematic reading, etc.). 25 27 26 28 = How It Works = … … 87 89 Plugin adminpanel page is under `tools` submenu. 88 90 89 The reading plan data is structured as a PHP array with the following format:90 91 91  92 93 94 ```php 95 [ 96 1 => [ // Day number 97 [ 98 'bookIndex' => 1, // Book number (1-66) 99 'chapters' => [ 100 ['chapter' => 1, 'from' => null, 'to' => null], // Complete chapter 101 ['chapter' => 2, 'from' => 1, 'to' => 17], // Partial chapter (verses 1-17) 102 ], 103 ], 104 ], 105 ] 106 ``` 107 108 Access the reading plan in your theme or plugin: 109 110 ```php 111 $reading_plan = /wp-content/plugins/bible-reading-plan/data.php; 112 $todays_reading = $reading_plan[current_day_number()]; 113 ``` 114 115 You can also create your own custom reading plans by modifying the `data.php` file structure to fit your specific needs (chronological order, thematic reading, etc.). 92 You can also create your own **custom reading plans** by modifying data directly from plugin adminpanel, to fit your specific needs (chronological order, thematic reading, etc.). 116 93 117 94 == Support == … … 123 100 If you find this plugin helpful, please consider supporting its development! A lot of time and effort went into creating this resource for the community. 124 101 125 ☕ **Buy me a coffee:** https://paypal.me/esolleso102 ☕ **Buy me a coffee:** [paypal.me/esolleso](https://paypal.me/esolleso) 126 103 127 104 Your support helps maintain and improve this plugin. Thank you! -
esolleso-daily-bible-reading-plan/trunk/readme.txt
r3387609 r3387614 1 1 === Bible Daily Reading Plan === 2 Contributors: Esaia , Daniel2 Contributors: Esaia 3 3 Tags: bible, reading plan, christianity, scripture, devotional 4 4 Requires at least: 5.0 … … 23 23 * **Easy to Follow** - Simple, intuitive reading schedule 24 24 * **Flexible Structure** - Supports partial chapter readings when needed 25 26 You can also create your own **custom reading plans** by modifying data directly from plugin adminpanel, to fit your specific needs (chronological order, thematic reading, etc.). 25 27 26 28 = How It Works = … … 87 89 Plugin adminpanel page is under `tools` submenu. 88 90 89 The reading plan data is structured as a PHP array with the following format:90 91 91  92 93 94 ```php 95 [ 96 1 => [ // Day number 97 [ 98 'bookIndex' => 1, // Book number (1-66) 99 'chapters' => [ 100 ['chapter' => 1, 'from' => null, 'to' => null], // Complete chapter 101 ['chapter' => 2, 'from' => 1, 'to' => 17], // Partial chapter (verses 1-17) 102 ], 103 ], 104 ], 105 ] 106 ``` 107 108 Access the reading plan in your theme or plugin: 109 110 ```php 111 $reading_plan = /wp-content/plugins/bible-reading-plan/data.php; 112 $todays_reading = $reading_plan[current_day_number()]; 113 ``` 114 115 You can also create your own custom reading plans by modifying the `data.php` file structure to fit your specific needs (chronological order, thematic reading, etc.). 92 You can also create your own **custom reading plans** by modifying data directly from plugin adminpanel, to fit your specific needs (chronological order, thematic reading, etc.). 116 93 117 94 == Support == … … 123 100 If you find this plugin helpful, please consider supporting its development! A lot of time and effort went into creating this resource for the community. 124 101 125 ☕ **Buy me a coffee:** https://paypal.me/esolleso102 ☕ **Buy me a coffee:** [paypal.me/esolleso](https://paypal.me/esolleso) 126 103 127 104 Your support helps maintain and improve this plugin. Thank you!
Note: See TracChangeset
for help on using the changeset viewer.