-
Notifications
You must be signed in to change notification settings - Fork 138
/
merlin-filters-sample.php
executable file
·205 lines (185 loc) · 7.61 KB
/
merlin-filters-sample.php
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
/**
* Available filters for extending Merlin WP.
*
* @package Merlin WP
* @version @@pkg.version
* @link https://merlinwp.com/
* @author Rich Tabor, from ThemeBeans.com & the team at ProteusThemes.com
* @copyright Copyright (c) 2018, Merlin WP of Inventionn LLC
* @license Licensed GPLv3 for Open Source Use
*/
/**
* Filter the home page title from your demo content.
* If your demo's home page title is "Home", you don't need this.
*
* @param string $output Home page title.
*/
function prefix_merlin_content_home_page_title( $output ) {
return 'My front page';
}
add_filter( 'merlin_content_home_page_title', 'prefix_merlin_content_home_page_title' );
/**
* Filter the blog page title from your demo content.
* If your demo's blog page title is "Blog", you don't need this.
*
* @param string $output Index blogroll page title.
*/
function prefix_merlin_content_blog_page_title( $output ) {
return 'Journal';
}
add_filter( 'merlin_content_blog_page_title', 'prefix_merlin_content_blog_page_title' );
/**
* Add your widget area to unset the default widgets from.
* If your theme's first widget area is "sidebar-1", you don't need this.
*
* @see https://stackoverflow.com/questions/11757461/how-to-populate-widgets-on-sidebar-on-theme-activation
*
* @param array $widget_areas Arguments for the sidebars_widgets widget areas.
* @return array of arguments to update the sidebars_widgets option.
*/
function prefix_merlin_unset_default_widgets_args( $widget_areas ) {
$widget_areas = array(
'sidebar-1' => array(),
);
return $widget_areas;
}
add_filter( 'merlin_unset_default_widgets_args', 'prefix_merlin_unset_default_widgets_args' );
/**
* Custom content for the generated child theme's functions.php file.
*
* @param string $output Generated content.
* @param string $slug Parent theme slug.
*/
function prefix_generate_child_functions_php( $output, $slug ) {
$slug_no_hyphens = strtolower( preg_replace( '#[^a-zA-Z]#', '', $slug ) );
$output = "
<?php
/**
* Theme functions and definitions.
*/
function {$slug_no_hyphens}_child_enqueue_styles() {
if ( SCRIPT_DEBUG ) {
wp_enqueue_style( '{$slug}-style' , get_template_directory_uri() . '/style.css' );
} else {
wp_enqueue_style( '{$slug}-minified-style' , get_template_directory_uri() . '/style.min.css' );
}
wp_enqueue_style( '{$slug}-child-style',
get_stylesheet_directory_uri() . '/style.css',
array( '{$slug}-style' ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', '{$slug_no_hyphens}_child_enqueue_styles' );\n
";
// Let's remove the tabs so that it displays nicely.
$output = trim( preg_replace( '/\t+/', '', $output ) );
// Filterable return.
return $output;
}
add_filter( 'merlin_generate_child_functions_php', 'prefix_generate_child_functions_php', 10, 2 );
/**
* Define the demo import files (remote files).
*
* To define imports, you just have to add the following code structure,
* with your own values to your theme (using the 'merlin_import_files' filter).
*/
function prefix_merlin_import_files() {
return array(
array(
'import_file_name' => 'Demo Import 1',
'import_file_url' => 'https://www.example.com/merlin/demo-content.xml',
'import_widget_file_url' => 'https://www.example.com/merlin/widgets.json',
'import_customizer_file_url' => 'https://www.example.com/merlin/customizer.dat',
'import_redux' => array(
array(
'file_url' => 'https://www.example.com/merlin/redux_options.json',
'option_name' => 'redux_option_name',
),
),
'import_preview_image_url' => 'https://www.example.com/merlin/preview_import_image1.jpg',
'import_notice' => __( 'A special note for this import.', 'your-textdomain' ),
'preview_url' => 'https://www.example.com/my-demo-1',
),
array(
'import_file_name' => 'Demo Import 2',
'import_file_url' => 'https://www.example.com/merlin/demo-content2.xml',
'import_widget_file_url' => 'https://www.example.com/merlin/widgets2.json',
'import_customizer_file_url' => 'https://www.example.com/merlin/customizer2.dat',
'import_redux' => array(
array(
'file_url' => 'https://www.example.com/merlin/redux_options2.json',
'option_name' => 'redux_option_name2',
),
),
'import_preview_image_url' => 'https://www.example.com/merlin/preview_import_image2.jpg',
'import_notice' => __( 'A special note for this import.', 'your-textdomain' ),
'preview_url' => 'https://www.example.com/my-demo-2',
),
);
}
add_filter( 'merlin_import_files', 'prefix_merlin_import_files' );
/**
* Define the demo import files (local files).
*
* You have to use the same filter as in above example,
* but with a slightly different array keys: local_*.
* The values have to be absolute paths (not URLs) to your import files.
* To use local import files, that reside in your theme folder,
* please use the below code.
* Note: make sure your import files are readable!
*/
function prefix_merlin_local_import_files() {
return array(
array(
'import_file_name' => 'Demo Import 1',
'local_import_file' => trailingslashit( get_template_directory() ) . 'merlin/demo-content.xml',
'local_import_widget_file' => trailingslashit( get_template_directory() ) . 'merlin/widgets.json',
'local_import_customizer_file' => trailingslashit( get_template_directory() ) . 'merlin/customizer.dat',
'local_import_redux' => array(
array(
'file_path' => trailingslashit( get_template_directory() ) . 'merlin/redux_options.json',
'option_name' => 'redux_option_name',
),
),
'import_preview_image_url' => 'https://www.example.com/merlin/preview_import_image1.jpg',
'import_notice' => __( 'After you import this demo, you will have to setup the slider separately.', 'your-textdomain' ),
'preview_url' => 'https://www.example.com/my-demo-1',
),
array(
'import_file_name' => 'Demo Import 2',
'local_import_file' => trailingslashit( get_template_directory() ) . 'merlin/demo-content2.xml',
'local_import_widget_file' => trailingslashit( get_template_directory() ) . 'merlin/widgets2.json',
'local_import_customizer_file' => trailingslashit( get_template_directory() ) . 'merlin/customizer2.dat',
'local_import_redux' => array(
array(
'file_path' => trailingslashit( get_template_directory() ) . 'merlin/redux_options2.json',
'option_name' => 'redux_option_name2',
),
),
'import_preview_image_url' => 'https://www.example.com/merlin/preview_import_image2.jpg',
'import_notice' => __( 'A special note for this import.', 'your-textdomain' ),
'preview_url' => 'https://www.example.com/my-demo-2',
),
);
}
add_filter( 'merlin_import_files', 'prefix_merlin_local_import_files' );
/**
* Execute custom code after the whole import has finished.
*/
function prefix_merlin_after_import_setup() {
// Assign menus to their locations.
$main_menu = get_term_by( 'name', 'Main Menu', 'nav_menu' );
set_theme_mod(
'nav_menu_locations', array(
'main-menu' => $main_menu->term_id,
)
);
// Assign front page and posts page (blog page).
$front_page_id = get_page_by_title( 'Home' );
$blog_page_id = get_page_by_title( 'Blog' );
update_option( 'show_on_front', 'page' );
update_option( 'page_on_front', $front_page_id->ID );
update_option( 'page_for_posts', $blog_page_id->ID );
}
add_action( 'merlin_after_all_import', 'prefix_merlin_after_import_setup' );