-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
265 lines (222 loc) · 6.92 KB
/
Copy pathfunctions.php
File metadata and controls
265 lines (222 loc) · 6.92 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
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<?php
/**
* Movaone functions and definitions
*
* @package Movaone
*/
defined( 'ABSPATH' ) || exit;
// define the Image path.
if ( ! defined( 'THEME_IMAGES' ) ) {
// imagePath.
define( 'THEME_IMAGES', get_template_directory_uri() . '/assets/images/' );
}
// define Movaone version.
if ( ! defined( 'THEME_VERSION' ) ) {
// Replace the version number of the theme on each release.
$version = wp_get_theme()->get( 'Version' );
define( 'THEME_VERSION', $version );
}
/**
* Load theme textdomain for translations.
*/
function movaone_language_setup() {
load_theme_textdomain( 'movaone', get_template_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'movaone_language_setup' );
/**
* Add css and js.
*/
function movaone_add_script() {
wp_enqueue_style( 'movaone-style', get_stylesheet_uri(), array(), THEME_VERSION );
wp_enqueue_style( 'movaone-original', get_template_directory_uri() . '/assets/css/movaone.css', array(), THEME_VERSION );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
wp_enqueue_script( 'movaone-script', get_template_directory_uri() . '/assets/js/movaone.js', array( 'jquery' ), THEME_VERSION, true );
}
add_action( 'wp_enqueue_scripts', 'movaone_add_script' );
/**
* Register widget area.
*/
function movaone_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'movaone' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'movaone' ),
'before_widget' => '<div class="widget-item">',
'after_widget' => '</div>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
)
);
// Registration of Related Post Widget.
register_widget( 'movaone_recent_posts' );
}
add_action( 'widgets_init', 'movaone_widgets_init' );
/**
* Register general theme supports and navigation menus.
*/
function movaone_general_register() {
// Navigation Menus.
register_nav_menus(
array(
'primary' => esc_html__( 'Primary Menu', 'movaone' ),
'footer' => esc_html__( 'Footer Menu', 'movaone' ),
)
);
// Add Feature image support & automatic feed.
add_theme_support( 'post-thumbnails' );
// add support for title tag.
add_theme_support( 'title-tag' );
// Add support for full and wide align images.
add_theme_support( 'align-wide' );
add_theme_support( 'appearance-tools' );
add_theme_support( 'automatic-feed-links' );
// Add support for responsive embeds.
add_theme_support( 'responsive-embeds' );
// add support for block styles.
add_theme_support( 'wp-block-styles' );
// custom logo.
add_theme_support(
'custom-logo',
array(
'height' => 60,
'width' => 60,
'flex-height' => true,
)
);
// custom background.
add_theme_support(
'custom-background',
array(
'default-color' => 'f8f8f7',
'default-image' => '',
'default-repeat' => 'no-repeat',
'default-position-x' => 'center',
'default-attachment' => 'scroll',
'default-size' => 'auto',
)
);
// custom header image.
$args = array(
'default-image' => '',
'default-background-color' => '#1e2a3a',
'default-text-color' => '#fefefe',
'width' => '100%',
'height' => 76,
'flex-width' => true,
'flex-height' => true,
'description' => __( 'No image', 'movaone' ),
);
add_theme_support( 'custom-header', $args );
// the post formats.
add_theme_support( 'post-formats', array( 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) );
// The content width.
if ( ! isset( $content_width ) ) {
$GLOBALS['content_width'] = 1400;
}
// html5 and gallery.
add_theme_support( 'html5', array( 'comment-list', 'comment-form', 'search-form', 'gallery', 'caption', 'style', 'script' ) );
// Add support for admin styles.
add_theme_support( 'editor-styles' );
add_editor_style( get_parent_theme_file_uri( 'assets/css/editor-style.css' ) );
}
add_action( 'after_setup_theme', 'movaone_general_register' );
/**
* Custom logo display.
*/
function movaone_logo() {
if ( has_custom_logo() ) {
the_custom_logo();
}
}
/**
* Title tag separator.
*
* @param string $separator Separator.
* @return string
*/
function movaone_document_title_separator( $separator ) {
$separator = '|';
return $separator;
}
add_filter( 'document_title_separator', 'movaone_document_title_separator' );
/**
* CTA button link.
*
* @return string
*/
function movaone_cta_link() {
$cta_link = get_theme_mod( 'cta_button_link', '#main' );
if ( ! strstr( $cta_link, 'http' ) || ! strstr( $cta_link, 'https' ) ) {
$cta_link = home_url( $cta_link );
} else {
$cta_link = esc_url( $cta_link );
}
return $cta_link;
}
/**
* Custom excerpt length.
*
* @param int $length Excerpt length.
* @return int
*/
function movaone_excerpt( $length ) {
if ( is_admin() ) {
return $length;
}
return 55;
}
add_filter( 'excerpt_length', 'movaone_excerpt' );
// include necessary files.
require get_template_directory() . '/inc/customize.php';
require get_template_directory() . '/inc/widget/recent_posts.php';
require get_template_directory() . '/inc/theme-options.php';
/**
* Create a template.
*/
function movaone_create_aside_page() {
// Check if the page already exists.
$page = get_page_by_path( 'aside' );
if ( $page ) {
return;
}
// Page Content.
$page_content =
<<<'HTML'
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
<div class="wp-block-group"><!-- wp:heading {"level":1} -->
<h1 class="wp-block-heading"><span>Smart</span><br><span class="text-cyan">WEB</span><br><span>Design</span></h1>
<!-- /wp:heading -->
<!-- wp:group {"className":"wp-block-spacer","layout":{"type":"constrained"}} -->
<div class="wp-block-group wp-block-spacer"><!-- wp:spacer {"height":"20px"} -->
<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer --></div>
<!-- /wp:group -->
<!-- wp:paragraph -->
<p>Movaone is a WordPress theme designed to be optimized for display on mobile devices such as smartphones.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Since the site is displayed on a mobile basis on a PC, pages load quickly, which helps reduce the bounce rate.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>The left content of the PC page is this page. Please rewrite it freely. The heading can be beautifully decorated by starting with H1.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>On PC, this area will always be displayed on the left.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
HTML;
// Create post object.
$aside_page = array(
'post_title' => 'Left Panel Content',
'post_name' => 'aside',
'post_content' => $page_content,
'post_status' => 'publish',
'post_type' => 'page',
);
// Insert the post into the database.
wp_insert_post( $aside_page );
}
add_action( 'after_setup_theme', 'movaone_create_aside_page' );