2013-01-14 

get_settings($name) 获取全部设置信息

参考 http://www.yoursite.com/wp-admin/options.php

示例

<?php echo get_option('blogname'); ?>

the_permalink()

将文章URL作为文本形式显示

<a href="<?php the_permalink(); ?>">permalink</a> 

the_title()

<?php the_title( $before, $after, $display ); ?>
<?php the_title('<h3>', '</h3>'); ?>

显示或返回当前日志的标题,类似函数 the_title_attribute();

Bloginfo()

参考: 

http://www.wordpress.la/codex-%E6%A8%A1%E6%9D%BF%E6%A0%87%E7%AD%BE-bloginfo().html

相关文章:

  • 2021-08-04
  • 2022-12-23
  • 2021-11-28
  • 2021-12-24
  • 2021-07-26
  • 2021-05-14
  • 2021-11-15
  • 2021-12-06
猜你喜欢
  • 2022-12-23
  • 2021-11-01
  • 2021-12-26
  • 2021-06-03
  • 2022-02-25
  • 2021-09-24
  • 2022-02-14
相关资源
相似解决方案