我在WordPress上处理子主题。当我想设计我的CSS子主题时,我需要折叠具有父主题特定属性的ID和类。
例如:我想在此模板中使用with cte as (
SELECT . . .,
ROW_NUMBER() OVER (PARTITION BY icc.ItemClassId ORDER BY i.LastUpdated DESC) as seqnum
FROM Item i INNER JOIN
ItemClassComponent icc
ON icc.ItemID = i.ID INNER JOIN
ItemClass ic
ON ic.ID = icc.ItemClassID
)
select *
from cte
where seqnum = 1;
折叠类或ID:
this.state = 1
如何使用Notepad ++或PhpStorm执行此操作?