Plugin Directory

Changeset 3387614


Ignore:
Timestamp:
10/31/2025 11:36:43 AM (5 months ago)
Author:
esaia
Message:

tagging 1.0.0

Location:
esolleso-daily-bible-reading-plan
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • esolleso-daily-bible-reading-plan/tags/1.0.0/readme.txt

    r3387609 r3387614  
    11=== Bible Daily Reading Plan ===
    2 Contributors: Esaia, Daniel
     2Contributors: Esaia
    33Tags: bible, reading plan, christianity, scripture, devotional
    44Requires at least: 5.0
     
    2323* **Easy to Follow** - Simple, intuitive reading schedule
    2424* **Flexible Structure** - Supports partial chapter readings when needed
     25
     26You 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.).
    2527
    2628= How It Works =
     
    8789Plugin adminpanel page is under `tools` submenu.
    8890
    89 The reading plan data is structured as a PHP array with the following format:
    9091
    91 ![Data Structure](assets/images/data-structure.png)
    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.).
     92You 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.).
    11693
    11794== Support ==
     
    123100If you find this plugin helpful, please consider supporting its development! A lot of time and effort went into creating this resource for the community.
    124101
    125 ☕ **Buy me a coffee:** https://paypal.me/esolleso
     102☕ **Buy me a coffee:** [paypal.me/esolleso](https://paypal.me/esolleso)
    126103
    127104Your support helps maintain and improve this plugin. Thank you!
  • esolleso-daily-bible-reading-plan/trunk/readme.txt

    r3387609 r3387614  
    11=== Bible Daily Reading Plan ===
    2 Contributors: Esaia, Daniel
     2Contributors: Esaia
    33Tags: bible, reading plan, christianity, scripture, devotional
    44Requires at least: 5.0
     
    2323* **Easy to Follow** - Simple, intuitive reading schedule
    2424* **Flexible Structure** - Supports partial chapter readings when needed
     25
     26You 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.).
    2527
    2628= How It Works =
     
    8789Plugin adminpanel page is under `tools` submenu.
    8890
    89 The reading plan data is structured as a PHP array with the following format:
    9091
    91 ![Data Structure](assets/images/data-structure.png)
    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.).
     92You 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.).
    11693
    11794== Support ==
     
    123100If you find this plugin helpful, please consider supporting its development! A lot of time and effort went into creating this resource for the community.
    124101
    125 ☕ **Buy me a coffee:** https://paypal.me/esolleso
     102☕ **Buy me a coffee:** [paypal.me/esolleso](https://paypal.me/esolleso)
    126103
    127104Your support helps maintain and improve this plugin. Thank you!
Note: See TracChangeset for help on using the changeset viewer.