Ticket #1368: test_plugin.php
| File test_plugin.php, 454 bytes (added by westi, 5 years ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | /* |
| 3 | Plugin Name: Get Archives filtering tester |
| 4 | Description: Tests stuff |
| 5 | Version: 0.1 |
| 6 | */ |
| 7 | |
| 8 | function test_filter_getarchives_where($where) |
| 9 | { |
| 10 | $where = "WHERE post_type = 'page' AND post_status = 'publish'"; |
| 11 | return $where; |
| 12 | } |
| 13 | |
| 14 | function test_filter_getarchives_join($join) |
| 15 | { |
| 16 | return $join; |
| 17 | } |
| 18 | |
| 19 | add_filter("getarchives_where","test_filter_getarchives_where"); |
| 20 | add_filter("getarchives_join","test_filter_getarchives_join"); |
| 21 | ?> |
