Skip to content

Commit 6fe9ca2

Browse files
committed
Add comments and README text.
1 parent 2f4bd9b commit 6fe9ca2

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
# tablepress-rowspan-all
22
TablePress Extension: Rowspans everywhere
3+
4+
## A note about caching
5+
TablePress plugin caches the table markup (as transients).
6+
If the table markup doesn't change after installing/updating this plugin,
7+
the TablePress cache may has to be invalidated.
8+
Either delete the TablePress-related transients,
9+
all transients (as transients should only be used for temporary data),
10+
or update the cache by re-saving the tables that should use
11+
this plugin by using the `outside_rowspan` trigger word.

tablepress-rowspan-all.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@
77
GitHub Plugin URI: strarsis/tablepress-rowspan-all
88
*/
99

10+
11+
/*
12+
* TablePress plugin caches the table markup (as transients).
13+
* If the table markup doesn't change after installing/updating this plugin,
14+
* the TablePress cache may has to be invalidated.
15+
* Either delete the TablePress-related transients,
16+
* all transients (as transients should only be used for temporary data),
17+
* or update the cache by re-saving the tables that should use
18+
* this plugin by using the `outside_rowspan` trigger word.
19+
*
20+
*/
21+
22+
1023
require_once 'dom_helper.php';
1124

1225
const TABLEPRESS_ROWSPAN = '#rowspan#';

0 commit comments

Comments
 (0)