加载主页/帖子时的WordPress操作

时间:2015-06-15 22:51:46

标签: wordpress-plugin wordpress

只要显示帖子,就会调用the_post操作。主页/帖子加载时最好使用哪些操作?

由于

1 个答案:

答案 0 :(得分:0)

主页没有特定的操作,但根据您的需要,您可以挂钩public func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { var storeNew = systemsBlog.getStore(listNews[indexPath.row].getIdStore()) var newNotice = listNews[indexPath.row] let cell = tableView.dequeueReusableCellWithIdentifier("TimelineCell", forIndexPath: indexPath) as? TimelineCell cell!.nameLabel.text = storeNew.getName() cell!.postLabel?.text = newNotice.getText() cell!.postLabel?.numberOfLines = 0 cell!.dateLabel.text = newNotice.getDate() cell!.typeImageView?.tag = indexPath.row; return cell! } class TimelineCell : UITableViewCell { @IBOutlet var nameLabel : UILabel! @IBOutlet var postLabel : UILabel? @IBOutlet var dateLabel : UILabel! override func awakeFromNib() { postLabel?.font = UIFont(name: "Roboto-Thin", size: 14) } override func layoutSubviews() { super.layoutSubviews() } 并调用函数is_homethe_post以确定当前是否正在查看主页面

列出了可用的操作here。根据您对主页的要求以及何时,您可以挂钩is_front_page,或者可能the_postwpwp_head来检查主页面如果满足该条件,则运行您的代码。