有时候需要判断wordpress站点是否设置了伪静态,即后台固定链接设置中的选择了非”默认”的结构。
下面看一下判断方法
<?php if(get_option('permalink_structure') == ''){ echo '使用的是默认设置'; }elseif(get_option('permalink_structure') == '/%year%/%monthnum%/%day%/%postname%/'){ echo '日期和名称型'; }elseif(get_option('permalink_structure') == '/%year%/%monthnum%/%postname%/'){ echo '月份和名称型'; }elseif(get_option('permalink_structure') == '/archives/%post_id%'){ echo '数字型'; }elseif(get_option('permalink_structure') == '/%postname%/'){ echo '文章名'; }else{ echo '自定义结构'; } ?>
若是只写get_option(‘permalink_structure’) 判断是否是自定义结构
评论抢沙发