Siteserver-栏目管理-获取栏目ID
来自站长百科
导航: 上一页
获取栏目ID
- int GetChannelIDByChannelIndex(int siteID , string channelIndex)
函数参数
参数 | 含义 |
---|---|
int siteID | 站点ID |
string channelIndex | 栏目索引 |
返回值
值 | 含义 |
---|---|
int | 返回对应的栏目ID |
本接口函数通过站点ID和栏目索引获取对于的栏目ID。如果没有对于的栏目,函数将返回值0。
获取栏目ID示例
int siteID = SiteManager.GetCurrentSiteID(); int channelID = ChannelManager.GetChannelIDByChannelIndex(siteID, "新闻中心");