This repository was archived by the owner on Apr 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadme.txt
More file actions
52 lines (38 loc) · 1.41 KB
/
readme.txt
File metadata and controls
52 lines (38 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
=== Rooftop CMS ===
Contributors: The Rooftop CMS team
Requires at least: WordPress 4.1
Tested up to: WordPress 4.3-trunk
Version: 1.2.1
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: rooftop
== Description ==
Rooftop base theme
== Installation ==
Add to your site's theme folder and enable on your network.
To use the theme functions in a child theme, set the Template to 'rooftop' in your child theme styles.css template comment.
Your implementation theme should hook into the 'init' hook (with a priority > 10).
Like this:
function setup_custom_features_content_type() {
RooftopCMS::addContentType('Feature');
RooftopCMS::addTaxonomy('Feature Detail', 'all');
}
add_action('init', 'setup_custom_features_content_type', 20);
== Copyright ==
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
== Changelog ==
= 1.2.1 =
* Tweak readme for packaging
= 1.2.0 =
* Add empty template files to be detected as valid WP theme
= 1.1 =
* Bug fixes
= 1.0 =
* initial release