我只想在$ option_header不等于yes并且帖子类型是页面的情况下打开内容块。
我是个完全没有PHP技能的菜鸟。
这是我认为应该起作用的方法,但事实并非如此。
if(($option_header != 'yes' && $post_type == 'page'
) ){?>
如果不是,则显示标题,并显示页面(不是帖子)
答案 0 :(得分:2)
WordPress附带了一些非常有用的in-built conditional tags来检查您的“位置”。其中之一是public void rotateImage(GraphicsContext gc, double speed) {
erase(gc); // erases the previous image
imgView.setRotate(imgView.getRotate() + speed);
SnapshotParameters params = new SnapshotParameters();
params.setFill(Color.TRANSPARENT);
image = imgView.snapshot(params, null);
gc.drawImage(image, pos.x, pos.y, width, height);
}
,它会根据需要将“仅在页面中”检查为真。您可以将其用作:
is_page()