我对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?
有人能给我一块骨头吗?
答案 0 :(得分:2)
<?php
echo get_option('permalink_structure');
?>