获得和增加wp_options 基本配置信息表 的数据
方法 bloginfo、 get_bloginfo、get_option、update_option
1.bloginfo
<title><?= bloginfo('name'); ?></title>
2.get_bloginfo
<?= get_bloginfo('charset'); ?>
或
<?php echo get_bloginfo('charset'); ?>
3.get_option、update_option
<?php
$view =get_option('view'); //数据表中获得view的值,如果没有该字段,则添加
update_option('view',$view+1); //每刷新一次,访问量+1
?>
<p>访问量:<?=$view; ?></p>