我正在尝试根据包含以下条件的帖子列表的 URL 在一个标签上添加或删除类
<?php
if (($featured['featured']==true) AND (basename($_SERVER["REQUEST_URI"]) != 'featured-questions'))
return 'featured';
?>
现在,如果没有分页和 url 输出,这可以正常工作
http://example.com/featured-questions
我现在添加了分页,第 2 页的 url 输出如下
http://example.com/featured-questions
http://example.com/featured-questions?start=2
http://example.com/featured-questions?start=3
http://example.com/featured-questions?start=4
那么如何确定这种类型的 URL 并根据需要有条件地应用类呢?