php函式瑣記

needrunning發表於2019-05-11

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


相關文章