UA
This commit is contained in:
parent
9f6db74f67
commit
b469fae0c8
2 changed files with 82 additions and 77 deletions
|
@ -241,6 +241,10 @@ element.style {
|
||||||
image-rendering: auto;
|
image-rendering: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.custom-logo {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
/* Borítókép javítás */
|
/* Borítókép javítás */
|
||||||
.post__thumb {
|
.post__thumb {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
|
@ -672,7 +672,7 @@ function custom_homepage_title($title, $id = null)
|
||||||
}
|
}
|
||||||
|
|
||||||
//Logó
|
//Logó
|
||||||
function mytheme_custom_logo_setup()
|
function rp_logo_setup()
|
||||||
{
|
{
|
||||||
add_theme_support("custom-logo", [
|
add_theme_support("custom-logo", [
|
||||||
"height" => 80, // A logó alapértelmezett magassága
|
"height" => 80, // A logó alapértelmezett magassága
|
||||||
|
@ -682,7 +682,7 @@ function mytheme_custom_logo_setup()
|
||||||
"header-text" => ["site-title", "site-description"], // Szöveg, ami megjelenhet a logó mellett
|
"header-text" => ["site-title", "site-description"], // Szöveg, ami megjelenhet a logó mellett
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
add_action("after_setup_theme", "mytheme_custom_logo_setup");
|
add_action("after_setup_theme", "rp_logo_setup");
|
||||||
|
|
||||||
// A the_title filtert használjuk, hogy módosítsuk az oldal címét
|
// A the_title filtert használjuk, hogy módosítsuk az oldal címét
|
||||||
add_filter("the_title", "custom_homepage_title", 10, 2);
|
add_filter("the_title", "custom_homepage_title", 10, 2);
|
||||||
|
@ -732,7 +732,8 @@ if (!function_exists("escapium_comment")) {
|
||||||
); ?>
|
); ?>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
<?php break;default:
|
<?php break;
|
||||||
|
default:
|
||||||
global $post; ?>
|
global $post; ?>
|
||||||
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
|
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
|
||||||
|
|
||||||
|
@ -752,7 +753,7 @@ if (!function_exists("escapium_comment")) {
|
||||||
_x('%1$s at %2$s', "[date] at [time of day]", "escapium"),
|
_x('%1$s at %2$s', "[date] at [time of day]", "escapium"),
|
||||||
get_comment_date(),
|
get_comment_date(),
|
||||||
get_comment_time()
|
get_comment_time()
|
||||||
); ?></a></p>
|
); ?></a></p>
|
||||||
|
|
||||||
<div class="comment-actions">
|
<div class="comment-actions">
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue