自定义WordPress主题的头部和底部可以通过编辑主题的header.php和footer.php文件来实现。具体步骤如下:
以下是示例代码:
header.php:
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!-- Add your custom code here -->
</body>
</html>
footer.php:
<!-- Add your custom code here -->
<?php wp_footer(); ?>
</body>
</html>