我在Firefox中选择框标题的垂直对齐问题.

用于选择的CSS看起来像这样:
select#cities_list {
width: 95px;
height: 45px;
line-height: 45px;
background: url('./img/select-arrow.png') no-repeat right transparent;
-webkit-appearance: none;
border: 1px solid #dcdcdc;
border-left: none;
border-right: none;
padding: 0 10px;
margin: 0;
float: left;
}
Run Code Online (Sandbox Code Playgroud)
在Chrome中一切都很好:

救命!
是否可以在Wordpress TinyMCE编辑器中更改短代码外观?我的一个客户没有HTML知识,很难向他解释在子页面上不能编辑的内容.
默认情况下,短代码如下所示:

我想实现这个目标:

TinyMCE是否支持任何类型的自定义过滤?
我想将谷歌地图用作多个地点选择器.是否可以选择地图标记并将其用于表单提交?
我正在尝试使用WP_Query和meta_query参数查询帖子:
$args = array(
'post_type' => 'produkty',
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'produkt_aktywny',
'value' => '1',
'compare' => '='),
array(
'key' => 'produkt_dostepnosc',
'value' => '1',
'compare' => '=')
)
);
$query = new WP_Query( $args );
Run Code Online (Sandbox Code Playgroud)
我应该添加什么来通过另外两个键('produkt_kategoria'和'produkt_cena')来订购结果?WP Codex中没有任何关于它的内容,但是:
"Do you know how to sort the query if the meta_value is an array? Write it here :)"
Run Code Online (Sandbox Code Playgroud)
据此,我相信按多个元值排序是可能的.
jquery ×2
wordpress ×2
appearance ×1
checkbox ×1
css ×1
firefox ×1
google-maps ×1
javascript ×1
meta-key ×1
select ×1
shortcode ×1
sorting ×1
styles ×1
tinymce ×1