2022年5月6日 23:11
#7054
キーマスター
失礼しました、カスタムフィールドの場合は’cfKey’の項目が抜けていました。
前述の2つの条件に加え、 ‘meta1’ === cfKey というようにカスタムフィールドのキーを条件に加えてください。’meta1’の部分を実際のカスタムフィールドのキーに置き換えてください。
if('post_meta' === sortKey && 'meta1' === cfKey && 'up' === sortType) { $('.feas-sl-1-up').addClass('current'); } else if('post_meta' === sortKey && 'meta1' === cfKey && 'down' === sortType) { $('.feas-sl-1-down').addClass('current'); } if('post_meta' === sortKey && 'meta2' === cfKey && 'up' === sortType) { $('.feas-sl-2-up').addClass('current'); } else if('post_meta' === sortKey && 'meta2' === cfKey && 'down' === sortType) { $('.feas-sl-2-down').addClass('current'); } if('post_meta' === sortKey && 'meta3' === cfKey && 'up' === sortType) { $('.feas-sl-3-up').addClass('current'); } else if('post_meta' === sortKey && 'meta3' === cfKey && 'down' === sortType) { $('.feas-sl-3-down').addClass('current'); }
お試しいただければと思います。
FirstElement 宮澤