WordPress推荐的css类的含义是什么?它们在哪里应用?

时间:2016-11-23 作者:Allen Titan

我正在创建一个主题,当我在主题检查插件中检查我的主题时,我看到了很多关于css类的错误。他们说一些课程是主题中的必修课。

这些css类如下(我在WordPress Codex).

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
        white-space: nowrap;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}
我不知道WordPress在主题中会将这些类应用到哪里,因为我没有在我的主题中放置任何类似的类。

1 个回复
最合适的回答,由SO网友:cjbj 整理而成

这些类由WordPress生成。例如,如果用户在帖子中插入一个图像,并说它必须右对齐,WP将在帖子中生成如下代码:

<img class="alignright" src="...">
现在,如果你的主题没有定义alignright 类,则图像将不会正确对齐,用户将无法获得他期望的结果。

您只需从核心复制这些样式,就可以了。但您可能还需要调整一些内容,例如图像标题周围边框的颜色。

最后两门课是为了帮助视力受损的人。因此,如果您使用的是常规屏幕,则不会发生任何事情。但这是在帮助别人。

您可能还想阅读此answer by Chip Bennett 在WordPress生成的其他类上,为您提供更多样式可能性。