Changeset 3371363
- Timestamp:
- 10/01/2025 05:49:18 PM (5 months ago)
- Location:
- atomic-events-calendar
- Files:
-
- 2 edited
-
tags/1.0.3/README.txt (modified) (8 diffs)
-
trunk/README.txt (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
atomic-events-calendar/tags/1.0.3/README.txt
r3371339 r3371363 44 44 Basic usage is through shortcode: 45 45 46 `` `46 `` 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 `` 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 `` 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 === … … 167 167 The plugin provides several hooks for customization: 168 168 169 `` `169 `` 170 170 // Filter the template path 171 171 add_filter('atomic_events_template_path', 'my_custom_template_path', 10, 2); … … 176 176 // Filter whether to show event in lists 177 177 add_filter('atomic_events_should_show_in_list', 'my_custom_visibility_logic', 10, 2); 178 `` `178 `` 179 179 180 180 === Shortcode Parameters === … … 206 206 Simply place a shortcode in your page content area like so: 207 207 208 `` `208 `` 209 209 [atomic-events filter="future" max="10" columns="3" featured="0" skip_first_x="0" skip_first_x_featured="1" order="ASC"] 210 `` `210 `` 211 211 212 212 == Screenshots == -
atomic-events-calendar/trunk/README.txt
r3371339 r3371363 44 44 Basic usage is through shortcode: 45 45 46 `` `46 `` 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 `` 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 `` 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 === … … 167 167 The plugin provides several hooks for customization: 168 168 169 `` `169 `` 170 170 // Filter the template path 171 171 add_filter('atomic_events_template_path', 'my_custom_template_path', 10, 2); … … 176 176 // Filter whether to show event in lists 177 177 add_filter('atomic_events_should_show_in_list', 'my_custom_visibility_logic', 10, 2); 178 `` `178 `` 179 179 180 180 === Shortcode Parameters === … … 206 206 Simply place a shortcode in your page content area like so: 207 207 208 `` `208 `` 209 209 [atomic-events filter="future" max="10" columns="3" featured="0" skip_first_x="0" skip_first_x_featured="1" order="ASC"] 210 `` `210 `` 211 211 212 212 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.