基本使用
notlike关键参数使用方法,仅支持loop循环
2022.03.31新增
假设我要查询文章标题 title
不存在 极致cms
这个词的所有文章
{loop table="article" isshow="1" notlike="title|极致cms" as="v"}
输出相关内容
{/loop}
假设我要查询文章标题 title
或 关键词keywords
或 简介description
都不存在 极致cms
这个词的所有文章
注意是小写的英文逗号 ,
{loop table="article" isshow="1" notlike="title|极致cms,keywords|极致cms,description|极致cms" as="v"}
输出相关内容
{/loop}
支持格式:
notlike='字段|关键词'
notlike='字段1|关键词1,字段2|关键词2'
notlike='字段1|变量1'
notlike='字段1|变量1,字段2|变量2'
notlike='字段1|关键词1,字段2|变量'
{php
$title = '极致cms';
$keywords = '极致';
/}
{loop table="article" isshow="1" notlike="title|$title,keywords|$keywords" as="v"}
输出相关内容
{/loop}