Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OERu
oeru_course
Commits
194213cb
Commit
194213cb
authored
Jan 30, 2020
by
Dave Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Work in progress changes
parent
b0c1af85
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
content.php
content.php
+2
-2
functions-api.php
functions-api.php
+2
-2
header.php
header.php
+2
-1
No files found.
content.php
View file @
194213cb
...
...
@@ -43,7 +43,7 @@
)
);
?>
</div>
<div
class=
"oeru_footer"
>
/* translators: used between list items, there is a space after the comma. */
<?php
/* translators: used between list items, there is a space after the comma. */
$tags_list
=
get_the_tag_list
(
''
,
__
(
', '
,
'oeru_course'
)
);
if
(
$tags_list
)
{
printf
(
...
...
@@ -53,7 +53,7 @@
__
(
'Tags:'
,
'oeru_course'
),
$tags_list
);
// WPCS: XSS OK.
}
}
?>
<?php
do_action
(
"oeru_post_footer"
);
?>
</div>
<?php
...
...
functions-api.php
View file @
194213cb
...
...
@@ -384,9 +384,9 @@ function add_blog_column_data( $v = '', $column_name, $user_id ) {
}
add_filter
(
'manage_users_custom_column'
,
'add_blog_column_data'
,
10
,
3
);
if
(
!
current_user_can
(
'edit_posts'
))
{
/*
if (!current_user_can('edit_posts')) {
show_admin_bar(false);
}
}
*/
// Custom template tags for this theme.
require
get_template_directory
()
.
'/inc/template-tags.php'
;
...
...
header.php
View file @
194213cb
...
...
@@ -4,7 +4,8 @@
<meta
charset=
"
<?php
bloginfo
(
'charset'
);
?>
"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<?php
wp_head
();
?>
<!-- <title>
<?php
echo
wp_title
(
'|'
,
true
,
'right'
);
?>
</title> -->
<?php
add_theme_support
(
'title-tag'
);
?>
<link
rel=
"profile"
href=
"http://gmpg.org/xfn/11"
>
<link
rel=
"pingback"
href=
"
<?php
bloginfo
(
'pingback_url'
);
?>
"
>
<?php
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment