Changeset 3371365
- Timestamp:
- 10/01/2025 05:56:23 PM (5 months ago)
- Location:
- atomic-events-calendar
- Files:
-
- 2 edited
-
tags/1.0.3/README.txt (modified) (5 diffs)
-
trunk/README.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
atomic-events-calendar/tags/1.0.3/README.txt
r3371363 r3371365 44 44 Basic usage is through shortcode: 45 45 46 `` 46 ```php 47 47 [atomic-events filter max='10' columns='3' featured='0' skip_first_x='0' skip skip_first_x_featured='1' order='ASC'] 48 `` 48 ``` 49 49 50 50 == Installation == … … 96 96 The plugin provides a comprehensive template override system. You can override any template by creating files in your theme: 97 97 98 `` 98 ```php 99 99 your-theme/ 100 100 └── atomic-events/ … … 108 108 └── content/ 109 109 └── single-event.php 110 `` 110 ``` 111 111 112 112 **Template Hierarchy Priority:** … … 131 131 When creating custom templates, you have access to these event fields: 132 132 133 `` 133 ```php 134 134 $event_model = new AtomicEventModel(get_the_ID()); 135 135 … … 154 154 $event_model->get_event_image_id(); 155 155 $event_model->get_permalink(); 156 `` 156 ``` 157 157 158 158 === Creating Custom Templates === -
atomic-events-calendar/trunk/README.txt
r3371363 r3371365 44 44 Basic usage is through shortcode: 45 45 46 `` 46 ```php 47 47 [atomic-events filter max='10' columns='3' featured='0' skip_first_x='0' skip skip_first_x_featured='1' order='ASC'] 48 `` 48 ``` 49 49 50 50 == Installation == … … 96 96 The plugin provides a comprehensive template override system. You can override any template by creating files in your theme: 97 97 98 `` 98 ```php 99 99 your-theme/ 100 100 └── atomic-events/ … … 108 108 └── content/ 109 109 └── single-event.php 110 `` 110 ``` 111 111 112 112 **Template Hierarchy Priority:** … … 131 131 When creating custom templates, you have access to these event fields: 132 132 133 `` 133 ```php 134 134 $event_model = new AtomicEventModel(get_the_ID()); 135 135 … … 154 154 $event_model->get_event_image_id(); 155 155 $event_model->get_permalink(); 156 `` 156 ``` 157 157 158 158 === Creating Custom Templates ===
Note: See TracChangeset
for help on using the changeset viewer.