WordPress プラグインWordPress Popular Postsにランキング順位を表示する方法

WordPress プラグインWordPress Popular Postsにランキング順位を表示する方法

cssに以下のものを書いて、フロントをみながら調節

.popular-posts {counter-reset: wpp-ranking;}
.popular-posts ul li:before {
content: counter(wpp-ranking, decimal);
counter-increment: wpp-ranking;
text-align: center;
opacity: 0.999;
float: left;
line-height: 30px;
width: 30px;
height: 30px;
background-color:rgba(39, 20, 2, 0.65);
color: #FFFFFF;
border-radius: 5px;
-moz-border-radius: 2px;
position: absolute;
left: 10px;
top: 15px;
font-weight: bold;
font-family:Arial, Helvetica, sans-serif;
}