Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Orchard 1.5 でコンテンツ メニュー項目に出力するクラスや ID を追加するにはどうすればよいですか?
コンテンツ/コンテンツ パーツに移動し、メニュー コンテンツ パーツを編集して、「CssClass」テキスト フィールドを追加します。次に、menuitem.cshtml のテンプレートをオーバーライドし、その行の直後にvar tag =次を追加します。
var tag =
if (Model.CssClass != null) { tag.AddCssClass(Model.ContentItem.Menu.CssClass.Value); }
これでうまくいくはずです。