Site Information bloginfo
bloginfo() ----------Displays information about the site.
get_bloginfo() ----------Gets information about the site.
<?php bloginfo('name'); ?> ----------Site name.
<?php bloginfo('description'); ?> ----------Short description of the site.
<?php bloginfo('template_url'); ?> ----------Theme URL: get_template_directory().
<?php bloginfo('template_directory'); ?> ----------Same as template_url.
<?php bloginfo('stylesheet_directory'); ?> ----------Theme URL:get_stylesheet_directory_uri().
<?php bloginfo('stylesheet_url'); ?> ----------Theme file style.css URL: get_stylesheet_uri().
<?php bloginfo('charset'); ?> ----------The site's encoding: UTF-8.
<?php bloginfo('html_type'); ?> ----------Content-Type of the page: text/html.
<?php bloginfo('language'); ?> ----------Site locale (language): RU.
<?php bloginfo('version'); ?> ----------WordPress version: 5.5.3.
<?php bloginfo('rss2_url '); ?> ----------URL of the feed: /feed.
<?php bloginfo('comments_rss2_url'); ?> ----------URL of the comments feed: /comments/feed.
<?php bloginfo('admin_email'); ?> ----------E-mail of Admin.
<?php bloginfo('pingback_url'); ?> ----------Notification URL to the xmlrpc.php file.
<?php bloginfo('rdf_url'); ?> ----------RDF/RSS 1.0 feed URL (/feed/rfd).
<?php bloginfo('rss_url'); ?> ----------RSS 0.92 feed URL (/feed/rss).
<?php bloginfo('atom_url '); ?> ----------Atom feed URL (/feed/atom).
<?php bloginfo('url'); ?> ----------Home page URL. Alias home_url().
<?php bloginfo('wpurl'); ?> ----------Admin panel URL. Alias site_url().