我们可以使用CSS和dashicons来设置表格样式。
示例:
对于我们的
video
类别,我们可以使用例如:
.edit-php .wp-list-table tr.category-video td.post-title strong:before {
content: "\\f126";
color: #ccc;
display: inline-block;
width: 20px;
height: 20px;
margin: 0 4px;
font-size: 20px;
line-height: 20px;
font-family: "dashicons";
font-weight: normal;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
我们的目标是
tr.category-video
班
只要看看它是如何在后端使用的,就可以了解CSS属性。
我们可以得到虚线图标列表here.
更新时间:
Here\'s 它是
WP_Posts_List_Table
类,该类显示post格式图标:
$pad = str_repeat( \'— \', $level );
echo "<td $attributes><strong>";
if ( $format = get_post_format( $post->ID ) ) {
$label = get_post_format_string( $format );
echo \'<a href="\' . esc_url( add_query_arg( array( \'post_format\' =>
$format, \'post_type\' => $post->post_type ), \'edit.php\' ) ) . \'"
class="post-state-format post-format-icon post-format-\' . $format
. \'" title="\' . $label . \'">\' . $label . ":</a> ";
}