This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html <?php language_attributes(); ?> > | |
<meta charset="<?php bloginfo('charset'); ?>"> | |
<?php bloginfo('name'); ?> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1> <?php the_archive_title(); ?> </h1> | |
<?php the_archive_description('<div class="the-custom-class">','</div>') ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$content = apply_filters('the_content', get_the_content() ); | |
echo get_media_embedded_in_content( $content, video ); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_theme_support('post-thumbnails'); | |
function front_thumbnail() { | |
add_theme_support('post-thumbnails'); | |
} | |
add_action('after_setup_theme','front_thumbnail'); | |
add_image_size('mini', 200, 200, true); | |
add_image_size('mini', 200, 200, array(left,top)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php the_time(); ?> | |
<?php the_time('j M Y'); ?> | |
human_time_diff(); | |
$time_diff = human_time_diff( get_post_time('U'), current_time('timestamp') ); | |
echo "Опубликовано $time_diff назад."; | |
//> Опубликовано 5 лет назад. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="<?php permalink(); ?>" >Читати</a> | |
<a target="_blank" href="twitter.com/share?url=<?php the_permalink(); ?>" class="share-facebook">Link</a> | |
global $post; | |
<?php echo get_permalink($post->ID);?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php the_excerpt(); ?> | |
add_filter( 'excerpt_more', 'new_excerpt_more' ); | |
function new_excerpt_more( $more ){ | |
global $post; | |
return '<a href="'. get_permalink($post) . '">Читать дальше...</a>'; | |
} | |
add_filter( 'excerpt_length', function(){ | |
return 20; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function test_debug($data){ | |
echo '<pre>' . print_r( $data, 1 ) . '</pre>'; | |
} | |
test_debug(wp_get_theme()); | |
test_debug(wp_get_theme() -> get('Version')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vscode-fish-text | |
Auto Close Tag | |
Auto Complete Tag | |
Auto Rename Tag | |
js-beautify for VS Code | |
Better Align | |
Better Comments | |
Bookmarks | |
Cobalt2 Theme for VS Code | |
vscode-ext-color-highlight |