wordpress在php中获取永久链接格式

时间:2012-04-29 10:30:55

标签: php wordpress

我对php的wordpress api不太好,但我正在寻找一种方法来返回我在这里试过的php中的永久链接格式: http://codex.wordpress.org/Function_Reference

但没有跳出来。在admin settings for WP i have a few options

我真正想要的是一种在PHP中获取此功能的方式:

get_permalink_format();  // would give me the rewrite rule as a string?

有人能给我一块骨头吗?

1 个答案:

答案 0 :(得分:2)

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