Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
noblogs-wp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
39
Issues
39
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ai
noblogs-wp
Commits
ee8e325a
Commit
ee8e325a
authored
Feb 20, 2019
by
lucha
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[auto] theme: twentytwelve 2.8
parent
753d7b54
Changes
25
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
455 additions
and
296 deletions
+455
-296
wp-content/themes/twentytwelve/404.php
wp-content/themes/twentytwelve/404.php
+1
-1
wp-content/themes/twentytwelve/archive.php
wp-content/themes/twentytwelve/archive.php
+8
-5
wp-content/themes/twentytwelve/author.php
wp-content/themes/twentytwelve/author.php
+6
-2
wp-content/themes/twentytwelve/category.php
wp-content/themes/twentytwelve/category.php
+2
-1
wp-content/themes/twentytwelve/comments.php
wp-content/themes/twentytwelve/comments.php
+19
-7
wp-content/themes/twentytwelve/content-page.php
wp-content/themes/twentytwelve/content-page.php
+9
-2
wp-content/themes/twentytwelve/content.php
wp-content/themes/twentytwelve/content.php
+12
-3
wp-content/themes/twentytwelve/css/blocks.css
wp-content/themes/twentytwelve/css/blocks.css
+9
-4
wp-content/themes/twentytwelve/css/editor-blocks.css
wp-content/themes/twentytwelve/css/editor-blocks.css
+7
-4
wp-content/themes/twentytwelve/footer.php
wp-content/themes/twentytwelve/footer.php
+1
-1
wp-content/themes/twentytwelve/functions.php
wp-content/themes/twentytwelve/functions.php
+241
-190
wp-content/themes/twentytwelve/header.php
wp-content/themes/twentytwelve/header.php
+9
-2
wp-content/themes/twentytwelve/image.php
wp-content/themes/twentytwelve/image.php
+61
-36
wp-content/themes/twentytwelve/inc/custom-header.php
wp-content/themes/twentytwelve/inc/custom-header.php
+22
-17
wp-content/themes/twentytwelve/index.php
wp-content/themes/twentytwelve/index.php
+10
-5
wp-content/themes/twentytwelve/page-templates/front-page.php
wp-content/themes/twentytwelve/page-templates/front-page.php
+5
-2
wp-content/themes/twentytwelve/page-templates/full-width.php
wp-content/themes/twentytwelve/page-templates/full-width.php
+5
-2
wp-content/themes/twentytwelve/page.php
wp-content/themes/twentytwelve/page.php
+5
-2
wp-content/themes/twentytwelve/readme.txt
wp-content/themes/twentytwelve/readme.txt
+6
-1
wp-content/themes/twentytwelve/search.php
wp-content/themes/twentytwelve/search.php
+5
-2
wp-content/themes/twentytwelve/sidebar-front.php
wp-content/themes/twentytwelve/sidebar-front.php
+3
-2
wp-content/themes/twentytwelve/sidebar.php
wp-content/themes/twentytwelve/sidebar.php
+1
-1
wp-content/themes/twentytwelve/single.php
wp-content/themes/twentytwelve/single.php
+5
-2
wp-content/themes/twentytwelve/style.css
wp-content/themes/twentytwelve/style.css
+1
-1
wp-content/themes/twentytwelve/tag.php
wp-content/themes/twentytwelve/tag.php
+2
-1
No files found.
wp-content/themes/twentytwelve/404.php
View file @
ee8e325a
...
...
@@ -26,4 +26,4 @@ get_header(); ?>
</div>
<!-- #content -->
</div>
<!-- #primary -->
<?php
get_footer
();
?>
\ No newline at end of file
<?php
get_footer
();
?>
wp-content/themes/twentytwelve/archive.php
View file @
ee8e325a
...
...
@@ -24,9 +24,10 @@ get_header(); ?>
<?php
if
(
have_posts
()
)
:
?>
<header
class=
"archive-header"
>
<h1
class=
"archive-title"
>
<?php
if
(
is_day
()
)
:
printf
(
__
(
'Daily Archives: %s'
,
'twentytwelve'
),
'<span>'
.
get_the_date
()
.
'</span>'
);
<h1
class=
"archive-title"
>
<?php
if
(
is_day
()
)
:
printf
(
__
(
'Daily Archives: %s'
,
'twentytwelve'
),
'<span>'
.
get_the_date
()
.
'</span>'
);
elseif
(
is_month
()
)
:
printf
(
__
(
'Monthly Archives: %s'
,
'twentytwelve'
),
'<span>'
.
get_the_date
(
_x
(
'F Y'
,
'monthly archives date format'
,
'twentytwelve'
)
)
.
'</span>'
);
elseif
(
is_year
()
)
:
...
...
@@ -34,12 +35,14 @@ get_header(); ?>
else
:
_e
(
'Archives'
,
'twentytwelve'
);
endif
;
?>
</h1>
?>
</h1>
</header>
<!-- .archive-header -->
<?php
/* Start the Loop */
while
(
have_posts
()
)
:
the_post
();
while
(
have_posts
()
)
:
the_post
();
/* Include the post format-specific template for the content. If you want to
* this in a child theme then include a file called content-___.php
...
...
wp-content/themes/twentytwelve/author.php
View file @
ee8e325a
...
...
@@ -44,7 +44,8 @@ get_header(); ?>
<?php
// If a user has filled out their description, show a bio on their entries.
if
(
get_the_author_meta
(
'description'
)
)
:
?>
if
(
get_the_author_meta
(
'description'
)
)
:
?>
<div
class=
"author-info"
>
<div
class=
"author-avatar"
>
<?php
...
...
@@ -67,7 +68,10 @@ get_header(); ?>
<?php
endif
;
?>
<?php
/* Start the Loop */
?>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
get_template_part
(
'content'
,
get_post_format
()
);
?>
<?php
endwhile
;
?>
...
...
wp-content/themes/twentytwelve/category.php
View file @
ee8e325a
...
...
@@ -27,7 +27,8 @@ get_header(); ?>
<?php
/* Start the Loop */
while
(
have_posts
()
)
:
the_post
();
while
(
have_posts
()
)
:
the_post
();
/* Include the post format-specific template for the content. If you want to
* this in a child theme then include a file called content-___.php
...
...
wp-content/themes/twentytwelve/comments.php
View file @
ee8e325a
...
...
@@ -17,8 +17,9 @@
* the visitor has not yet entered the password we will
* return early without loading the comments.
*/
if
(
post_password_required
()
)
if
(
post_password_required
()
)
{
return
;
}
?>
<div
id=
"comments"
class=
"comments-area"
>
...
...
@@ -28,13 +29,23 @@ if ( post_password_required() )
<?
php
if
(
have_comments
()
)
:
?>
<h2
class=
"comments-title"
>
<?php
printf
(
_n
(
'One thought on “%2$s”'
,
'%1$s thoughts on “%2$s”'
,
get_comments_number
(),
'twentytwelve'
),
number_format_i18n
(
get_comments_number
()
),
'<span>'
.
get_the_title
()
.
'</span>'
);
printf
(
_n
(
'One thought on “%2$s”'
,
'%1$s thoughts on “%2$s”'
,
get_comments_number
(),
'twentytwelve'
),
number_format_i18n
(
get_comments_number
()
),
'<span>'
.
get_the_title
()
.
'</span>'
);
?>
</h2>
<ol
class=
"commentlist"
>
<?php
wp_list_comments
(
array
(
'callback'
=>
'twentytwelve_comment'
,
'style'
=>
'ol'
)
);
?>
<?php
wp_list_comments
(
array
(
'callback'
=>
'twentytwelve_comment'
,
'style'
=>
'ol'
,
)
);
?>
</ol>
<!-- .commentlist -->
<?php
if
(
get_comment_pages_count
()
>
1
&&
get_option
(
'page_comments'
)
)
:
// are there comments to navigate through ?>
...
...
@@ -49,12 +60,13 @@ if ( post_password_required() )
/* If there are no comments and comments are closed, let's leave a note.
* But we only want the note on posts and pages that had comments in the first place.
*/
if
(
!
comments_open
()
&&
get_comments_number
()
)
:
?>
<p
class=
"nocomments"
>
<?php
_e
(
'Comments are closed.'
,
'twentytwelve'
);
?>
</p>
if
(
!
comments_open
()
&&
get_comments_number
()
)
:
?>
<p
class=
"nocomments"
>
<?php
_e
(
'Comments are closed.'
,
'twentytwelve'
);
?>
</p>
<?php
endif
;
?>
<?php
endif
;
// have_comments() ?>
<?
php
comment_form
();
?>
</div>
<!-- #comments .comments-area -->
\ No newline at end of file
</div>
<!-- #comments .comments-area -->
wp-content/themes/twentytwelve/content-page.php
View file @
ee8e325a
...
...
@@ -11,14 +11,21 @@
<article
id=
"post-
<?php
the_ID
();
?>
"
<?php
post_class
();
?>
>
<header
class=
"entry-header"
>
<?php
if
(
!
is_page_template
(
'page-templates/front-page.php'
)
)
:
?>
<?php
the_post_thumbnail
();
?>
<?php
the_post_thumbnail
();
?>
<?php
endif
;
?>
<h1
class=
"entry-title"
>
<?php
the_title
();
?>
</h1>
</header>
<div
class=
"entry-content"
>
<?php
the_content
();
?>
<?php
wp_link_pages
(
array
(
'before'
=>
'<div class="page-links">'
.
__
(
'Pages:'
,
'twentytwelve'
),
'after'
=>
'</div>'
)
);
?>
<?php
wp_link_pages
(
array
(
'before'
=>
'<div class="page-links">'
.
__
(
'Pages:'
,
'twentytwelve'
),
'after'
=>
'</div>'
,
)
);
?>
</div>
<!-- .entry-content -->
<footer
class=
"entry-meta"
>
<?php
edit_post_link
(
__
(
'Edit'
,
'twentytwelve'
),
'<span class="edit-link">'
,
'</span>'
);
?>
...
...
wp-content/themes/twentytwelve/content.php
View file @
ee8e325a
...
...
@@ -17,9 +17,11 @@
</div>
<?php
endif
;
?>
<header
class=
"entry-header"
>
<?php
if
(
!
post_password_required
()
&&
!
is_attachment
()
)
:
<?php
if
(
!
post_password_required
()
&&
!
is_attachment
()
)
:
the_post_thumbnail
();
endif
;
?>
endif
;
?>
<?php
if
(
is_single
()
)
:
?>
<h1
class=
"entry-title"
>
<?php
the_title
();
?>
</h1>
...
...
@@ -42,7 +44,14 @@
<?php
else
:
?>
<div
class=
"entry-content"
>
<?php
the_content
(
__
(
'Continue reading <span class="meta-nav">→</span>'
,
'twentytwelve'
)
);
?>
<?php
wp_link_pages
(
array
(
'before'
=>
'<div class="page-links">'
.
__
(
'Pages:'
,
'twentytwelve'
),
'after'
=>
'</div>'
)
);
?>
<?php
wp_link_pages
(
array
(
'before'
=>
'<div class="page-links">'
.
__
(
'Pages:'
,
'twentytwelve'
),
'after'
=>
'</div>'
,
)
);
?>
</div>
<!-- .entry-content -->
<?php
endif
;
?>
...
...
wp-content/themes/twentytwelve/css/blocks.css
View file @
ee8e325a
...
...
@@ -99,13 +99,13 @@ p.has-drop-cap:not(:focus)::first-letter {
.wp-block-quote
:not
(
.is-large
)
:not
(
.is-style-large
)
{
border
:
0
;
padding
:
1.714285714rem
;
padding
:
24px
;
padding
:
1.714285714rem
;
}
.wp-block-quote
{
padding
:
1.714285714rem
;
padding
:
24px
;
padding
:
1.714285714rem
;
}
.wp-block-quote
cite
{
...
...
@@ -246,7 +246,6 @@ pre.wp-block-code {
.wp-block-button
.wp-block-button__link
{
border
:
1px
solid
#d2d2d2
;
border-radius
:
3px
;
font-family
:
inherit
;
font-size
:
11px
;
font-size
:
0.785714286rem
;
...
...
@@ -262,6 +261,12 @@ pre.wp-block-code {
color
:
#7c7c7c
;
}
.wp-block-button.is-style-outline
.wp-block-button__link
,
.wp-block-button.is-style-outline
.wp-block-button__link
:visited
{
background-color
:
inherit
;
border-color
:
inherit
;
}
.entry-content
.wp-block-button__link
:hover
,
.entry-content
.wp-block-button__link
:visited:hover
,
.entry-content
.wp-block-button__link
:focus
{
...
...
@@ -274,7 +279,7 @@ pre.wp-block-code {
color
:
#757575
;
}
.wp-block-button__link
:not
(
.has-background
)
{
.wp-block-button
:not
(
.is-style-outline
)
.wp-block-button
__link
:not
(
.has-background
)
{
background-repeat
:
repeat-x
;
background-image
:
-moz-linear-gradient
(
top
,
#f4f4f4
,
#e6e6e6
);
background-image
:
-ms-linear-gradient
(
top
,
#f4f4f4
,
#e6e6e6
);
...
...
wp-content/themes/twentytwelve/css/editor-blocks.css
View file @
ee8e325a
...
...
@@ -234,8 +234,7 @@ p.has-drop-cap:not(:focus)::first-letter {
text-decoration
:
underline
;
}
.wp-block-file
.wp-block-file__button
,
.wp-block-button
.wp-block-file__button
:hover
{
.wp-block-file
.wp-block-file__button
{
background-color
:
#e6e6e6
;
background-repeat
:
repeat-x
;
background-image
:
-moz-linear-gradient
(
top
,
#f4f4f4
,
#e6e6e6
);
...
...
@@ -342,7 +341,6 @@ p.has-drop-cap:not(:focus)::first-letter {
.wp-block-button
.wp-block-button__link
{
border
:
1px
solid
#d2d2d2
;
border-radius
:
3px
;
font-family
:
inherit
;
font-size
:
11px
;
font-weight
:
normal
;
...
...
@@ -358,7 +356,12 @@ p.has-drop-cap:not(:focus)::first-letter {
box-shadow
:
0
1px
2px
rgba
(
64
,
64
,
64
,
0.1
);
}
.wp-block-button
.wp-block-button__link
:not
(
.has-background
)
{
.wp-block-button.is-style-outline
.wp-block-button__link
{
background-color
:
inherit
;
border-color
:
inherit
;
}
.wp-block-button
:not
(
.is-style-outline
)
.wp-block-button__link
:not
(
.has-background
)
{
background-image
:
-moz-linear-gradient
(
top
,
#f4f4f4
,
#e6e6e6
);
background-image
:
-ms-linear-gradient
(
top
,
#f4f4f4
,
#e6e6e6
);
background-image
:
-webkit-linear-gradient
(
top
,
#f4f4f4
,
#e6e6e6
);
...
...
wp-content/themes/twentytwelve/footer.php
View file @
ee8e325a
...
...
@@ -27,4 +27,4 @@
<?php
wp_footer
();
?>
</body>
</html>
\ No newline at end of file
</html>
wp-content/themes/twentytwelve/functions.php
View file @
ee8e325a
This diff is collapsed.
Click to expand it.
wp-content/themes/twentytwelve/header.php
View file @
ee8e325a
...
...
@@ -42,7 +42,14 @@
<nav
id=
"site-navigation"
class=
"main-navigation"
role=
"navigation"
>
<button
class=
"menu-toggle"
>
<?php
_e
(
'Menu'
,
'twentytwelve'
);
?>
</button>
<a
class=
"assistive-text"
href=
"#content"
title=
"
<?php
esc_attr_e
(
'Skip to content'
,
'twentytwelve'
);
?>
"
>
<?php
_e
(
'Skip to content'
,
'twentytwelve'
);
?>
</a>
<?php
wp_nav_menu
(
array
(
'theme_location'
=>
'primary'
,
'menu_class'
=>
'nav-menu'
)
);
?>
<?php
wp_nav_menu
(
array
(
'theme_location'
=>
'primary'
,
'menu_class'
=>
'nav-menu'
,
)
);
?>
</nav>
<!-- #site-navigation -->
<?php
if
(
get_header_image
()
)
:
?>
...
...
@@ -50,4 +57,4 @@
<?php
endif
;
?>
</header>
<!-- #masthead -->
<div
id=
"main"
class=
"wrapper"
>
\ No newline at end of file
<div
id=
"main"
class=
"wrapper"
>
wp-content/themes/twentytwelve/image.php
View file @
ee8e325a
...
...
@@ -14,7 +14,10 @@ get_header(); ?>
<div
id=
"primary"
class=
"site-content"
>
<div
id=
"content"
role=
"main"
>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<article
id=
"post-
<?php
the_ID
();
?>
"
<?php
post_class
(
'image-attachment'
);
?>
>
<header
class=
"entry-header"
>
...
...
@@ -23,7 +26,8 @@ get_header(); ?>
<footer
class=
"entry-meta"
>
<?php
$metadata
=
wp_get_attachment_metadata
();
printf
(
__
(
'<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s × %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>.'
,
'twentytwelve'
),
printf
(
__
(
'<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s × %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>.'
,
'twentytwelve'
),
esc_attr
(
get_the_date
(
'c'
)
),
esc_html
(
get_the_date
()
),
esc_url
(
wp_get_attachment_url
()
),
...
...
@@ -47,46 +51,60 @@ get_header(); ?>
<div
class=
"entry-attachment"
>
<div
class=
"attachment"
>
<?php
/*
* Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery,
* or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file
*/
$attachments
=
array_values
(
get_children
(
array
(
'post_parent'
=>
$post
->
post_parent
,
'post_status'
=>
'inherit'
,
'post_type'
=>
'attachment'
,
'post_mime_type'
=>
'image'
,
'order'
=>
'ASC'
,
'orderby'
=>
'menu_order ID'
)
)
);
foreach
(
$attachments
as
$k
=>
$attachment
)
:
if
(
$attachment
->
ID
==
$post
->
ID
)
break
;
<?php
/*
* Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery,
* or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file
*/
$attachments
=
array_values
(
get_children
(
array
(
'post_parent'
=>
$post
->
post_parent
,
'post_status'
=>
'inherit'
,
'post_type'
=>
'attachment'
,
'post_mime_type'
=>
'image'
,
'order'
=>
'ASC'
,
'orderby'
=>
'menu_order ID'
,
)
)
);
foreach
(
$attachments
as
$k
=>
$attachment
)
:
if
(
$attachment
->
ID
==
$post
->
ID
)
{
break
;
}
endforeach
;
// If there is more than 1 attachment in a gallery
if
(
count
(
$attachments
)
>
1
)
:
$k
++
;
if
(
isset
(
$attachments
[
$k
]
)
)
:
// get the URL of the next image attachment
$next_attachment_url
=
get_attachment_link
(
$attachments
[
$k
]
->
ID
);
else
:
// or get the URL of the first image attachment
$next_attachment_url
=
get_attachment_link
(
$attachments
[
0
]
->
ID
);
endif
;
// If there is more than 1 attachment in a gallery
if
(
count
(
$attachments
)
>
1
)
:
$k
++
;
if
(
isset
(
$attachments
[
$k
]
)
)
:
// get the URL of the next image attachment
$next_attachment_url
=
get_attachment_link
(
$attachments
[
$k
]
->
ID
);
else
:
// or get the URL of the first image attachment
$next_attachment_url
=
get_attachment_link
(
$attachments
[
0
]
->
ID
);
endif
;
else
:
// or, if there's only 1 image, get the URL of the image
$next_attachment_url
=
wp_get_attachment_url
();
endif
;
?>
<a
href=
"
<?php
echo
esc_url
(
$next_attachment_url
);
?>
"
title=
"
<?php
the_title_attribute
();
?>
"
rel=
"attachment"
>
<?php
/**
* Filter the image attachment size to use.
*
* @since Twenty Twelve 1.0
*
* @param array $size {
* @type int The attachment height in pixels.
* @type int The attachment width in pixels.
* }
*/
$attachment_size
=
apply_filters
(
'twentytwelve_attachment_size'
,
array
(
960
,
960
)
);
echo
wp_get_attachment_image
(
$post
->
ID
,
$attachment_size
);
?>
</a>
<a
href=
"
<?php
echo
esc_url
(
$next_attachment_url
);
?>
"
title=
"
<?php
the_title_attribute
();
?>
"
rel=
"attachment"
>
<?php
/**
* Filter the image attachment size to use.
*
* @since Twenty Twelve 1.0
*
* @param array $size {
* @type int The attachment height in pixels.
* @type int The attachment width in pixels.
* }
*/
$attachment_size
=
apply_filters
(
'twentytwelve_attachment_size'
,
array
(
960
,
960
)
);
echo
wp_get_attachment_image
(
$post
->
ID
,
$attachment_size
);
?>
</a>
<?php
if
(
!
empty
(
$post
->
post_excerpt
)
)
:
?>
<div
class=
"entry-caption"
>
...
...
@@ -99,7 +117,14 @@ endif;
<div
class=
"entry-description"
>
<?php
the_content
();
?>
<?php
wp_link_pages
(
array
(
'before'
=>
'<div class="page-links">'
.
__
(
'Pages:'
,
'twentytwelve'
),
'after'
=>
'</div>'
)
);
?>
<?php
wp_link_pages
(
array
(
'before'
=>
'<div class="page-links">'
.
__
(
'Pages:'
,
'twentytwelve'
),
'after'
=>
'</div>'
,
)
);
?>
</div>
<!-- .entry-description -->
</div>
<!-- .entry-content -->
...
...
wp-content/themes/twentytwelve/inc/custom-header.php
View file @
ee8e325a
...
...
@@ -54,8 +54,9 @@ add_action( 'after_setup_theme', 'twentytwelve_custom_header_setup' );
*/
function
twentytwelve_custom_header_fonts
()
{
$font_url
=
twentytwelve_get_font_url
();
if
(
!
empty
(
$font_url
)
)
if
(
!
empty
(
$font_url
)
)
{
wp_enqueue_style
(
'twentytwelve-fonts'
,
esc_url_raw
(
$font_url
),
array
(),
null
);
}
}
add_action
(
'admin_print_styles-appearance_page_custom-header'
,
'twentytwelve_custom_header_fonts'
);
...
...
@@ -70,26 +71,27 @@ function twentytwelve_header_style() {
$text_color
=
get_header_textcolor
();
// If no custom options for text are set, let's bail
if
(
$text_color
==
get_theme_support
(
'custom-header'
,
'default-text-color'
)
)
if
(
$text_color
==
get_theme_support
(
'custom-header'
,
'default-text-color'
)
)
{
return
;
}
// If we get this far, we have custom styles.
?>
<style
type=
"text/css"
id=
"twentytwelve-header-css"
>
<?php
// Has the text been hidden?
if
(
!
display_header_text
()
)
:
?>
.site-title
,
.site-description
{
position
:
absolute
;
clip
:
rect
(
1px
1px
1px
1px
);
/* IE7 */
clip
:
rect
(
1px
,
1px
,
1px
,
1px
);
}
<?php
if
(
!
display_header_text
()
)
:
?>
.site-title
,
.site-description
{
position
:
absolute
;
clip
:
rect
(
1px
1px
1px
1px
);
/* IE7 */
clip
:
rect
(
1px
,
1px
,
1px
,
1px
);
}
<?php
// If the user has set a custom color for the text, use that.
else
:
?>
?>
.site-header
h1
a
,
.site-header
h2
{
color
:
#
<?php
echo
$text_color
;
?>
;
...
...
@@ -105,7 +107,7 @@ function twentytwelve_header_style() {
* @since Twenty Twelve 1.0
*/
function
twentytwelve_admin_header_style
()
{
?>
?>
<style
type=
"text/css"
id=
"twentytwelve-admin-header-css"
>
.appearance_page_custom-header
#headimg
{
border
:
none
;
...
...
@@ -136,7 +138,7 @@ function twentytwelve_admin_header_style() {
max-width
:
<?php
echo
get_theme_support
(
'custom-header'
,
'max-width'
);
?>
px
;
}
</style>
<?php
<?php
}
/**
...
...
@@ -155,9 +157,12 @@ function twentytwelve_admin_header_image() {
<div
id=
"headimg"
>
<h1
class=
"displaying-header-text"
><a
id=
"name"
style=
"
<?php
echo
esc_attr
(
$style
);
?>
"
onclick=
"return false;"
href=
"
<?php
echo
esc_url
(
home_url
(
'/'
)
);
?>
"
>
<?php
bloginfo
(
'name'
);
?>
</a></h1>
<h2
id=
"desc"
class=
"displaying-header-text"
style=
"
<?php
echo
esc_attr
(
$style
);
?>
"
>
<?php
bloginfo
(
'description'
);
?>
</h2>
<?php
$header_image
=
get_header_image
();
if
(
!
empty
(
$header_image
)
)
:
?>
<?php
$header_image
=
get_header_image
();
if
(
!
empty
(
$header_image
)
)
:
?>
<img
src=
"
<?php
echo
esc_url
(
$header_image
);
?>
"
class=
"header-image"
width=
"
<?php
echo
esc_attr
(
get_custom_header
()
->
width
);
?>
"
height=
"
<?php
echo
esc_attr
(
get_custom_header
()
->
height
);
?>
"
alt=
""
/>
<?php
endif
;
?>
</div>
<?php
}
<?php
}
wp-content/themes/twentytwelve/index.php
View file @
ee8e325a
...
...
@@ -21,7 +21,10 @@ get_header(); ?>
<?php
if
(
have_posts
()
)
:
?>
<?php
/* Start the Loop */
?>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
get_template_part
(
'content'
,
get_post_format
()
);
?>
<?php
endwhile
;
?>
...
...
@@ -31,9 +34,10 @@ get_header(); ?>
<article
id=
"post-0"
class=
"post no-results not-found"
>
<?php
if
(
current_user_can
(
'edit_posts'
)
)
:
<?php
if
(
current_user_can
(
'edit_posts'
)
)
:
// Show a different message to a logged-in user who can add posts.
?>
?>
<header
class=
"entry-header"
>
<h1
class=
"entry-title"
>
<?php
_e
(
'No posts to display'
,
'twentytwelve'
);
?>
</h1>
</header>
...
...
@@ -42,9 +46,10 @@ get_header(); ?>
<p>
<?php
printf
(
__
(
'Ready to publish your first post? <a href="%s">Get started here</a>.'
,
'twentytwelve'
),
admin_url
(
'post-new.php'
)
);
?>
</p>
</div>
<!-- .entry-content -->
<?php
else
:
<?php
else
:
// Show the default message to everyone else.
?>
?>
<header
class=
"entry-header"
>
<h1
class=
"entry-title"
>
<?php
_e
(
'Nothing Found'
,
'twentytwelve'
);
?>
</h1>
</header>
...
...
wp-content/themes/twentytwelve/page-templates/front-page.php
View file @
ee8e325a
...
...
@@ -17,7 +17,10 @@ get_header(); ?>
<div
id=
"primary"
class=
"site-content"
>
<div
id=
"content"
role=
"main"
>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
if
(
has_post_thumbnail
()
)
:
?>
<div
class=
"entry-page-image"
>
<?php
the_post_thumbnail
();
?>
...
...
@@ -32,4 +35,4 @@ get_header(); ?>
</
div
><!--
#primary -->
<?
php
get_sidebar
(
'front'
);
?>
<?php
get_footer
();
?>
\ No newline at end of file
<?php
get_footer
();
?>
wp-content/themes/twentytwelve/page-templates/full-width.php
View file @
ee8e325a
...
...
@@ -19,7 +19,10 @@ get_header(); ?>
<div
id=
"primary"
class=
"site-content"
>
<div
id=
"content"
role=
"main"
>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
get_template_part
(
'content'
,
'page'
);
?>
<?php
comments_template
(
''
,
true
);
?>
<?php
endwhile
;
// end of the loop. ?>
...
...
@@ -27,4 +30,4 @@ get_header(); ?>
</
div
><!--
#content -->
</
div
><!--
#primary -->
<?
php
get_footer
();
?>
\ No newline at end of file
<?
php
get_footer
();
?>
wp-content/themes/twentytwelve/page.php
View file @
ee8e325a
...
...
@@ -17,7 +17,10 @@ get_header(); ?>
<div
id=
"primary"
class=
"site-content"
>
<div
id=
"content"
role=
"main"
>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
get_template_part
(
'content'
,
'page'
);
?>
<?php
comments_template
(
''
,
true
);
?>
<?php
endwhile
;
// end of the loop. ?>
...
...
@@ -26,4 +29,4 @@ get_header(); ?>
</
div
><!--
#primary -->
<?
php
get_sidebar
();
?>
<?php
get_footer
();
?>
\ No newline at end of file
<?php
get_footer
();
?>
wp-content/themes/twentytwelve/readme.txt
View file @
ee8e325a
...
...
@@ -2,7 +2,7 @@
Contributors: the WordPress team
Requires at least: WordPress 3.5
Tested up to: WordPress 5.0
Stable tag: 2.
7
Stable tag: 2.
8
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
...
...
@@ -43,6 +43,11 @@ Source: https://github.com/aFarkas/html5shiv
== Changelog ==
= 2.8 =
* Released: January 9, 2019
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.8
= 2.7 =
* Released: December 19, 2018
...
...
wp-content/themes/twentytwelve/search.php
View file @
ee8e325a
...
...
@@ -21,7 +21,10 @@ get_header(); ?>
<?php
twentytwelve_content_nav
(
'nav-above'
);
?>
<?php
/* Start the Loop */
?>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
while
(
have_posts
()
)
:
the_post
();
?>
<?php
get_template_part
(
'content'
,
get_post_format
()
);
?>
<?php
endwhile
;
?>