我正在制作图片供稿,但也有图片内容。单击图像时,将调用page single-image.php。
我正在尝试在模式框中打开single-image.php,但它无法正常工作
单image.php
>>> class B(object):
... x=5
>>> b1=B()
>>> b2=B()
>>> b1.x += 1
>>> b1.__dict__
{'x': 6}
>>> b2.__dict__
{}
>>> B.__dict__
{'x': 5 ... and other stuff ... }