File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -65,9 +65,6 @@ function ed_remove_menus() {
65
65
global $ submenu ;
66
66
67
67
if ( current_user_can ( 'editor ' ) ) {
68
- remove_menu_page ('tools.php ' );
69
- remove_menu_page ('profile.php ' );
70
- // remove_menu_page('edit-comments.php');
71
68
72
69
unset($ submenu ['themes.php ' ][5 ]); //Appearence -> Themes
73
70
unset($ submenu ['themes.php ' ][6 ]); //Appearence -> Customise
Original file line number Diff line number Diff line change 13
13
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
14
14
15
15
<meta name="viewport" content="width=device-width, initial-scale=1">
16
+
17
+ <meta name="format-detection" content="telephone=no">
16
18
17
19
<?php if (is_search ()) { ?>
18
20
Original file line number Diff line number Diff line change 21
21
<?php
22
22
23
23
$ paged = (get_query_var ('paged ' )) ? get_query_var ('paged ' ) : 1 ;
24
+ $ args = array (
25
+ 'posts_per_page ' => 3 ,
26
+ 'paged ' => $ paged
27
+ );
24
28
25
- $ args = array ('paged ' => $ paged );
26
-
27
- query_posts ( $ args );
29
+ query_posts ($ args );
28
30
29
31
if (have_posts ()) : while (have_posts ()) : the_post (); ?>
30
32
You can’t perform that action at this time.
0 commit comments