PluginProbe ʕ •ᴥ•ʔ
WPFront Scroll Top / trunk
WPFront Scroll Top vtrunk
1.5 1.6 1.6.1 1.6.2 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1 2.1.1 2.2 3.0.0 3.0.1 trunk 1.0 1.0.1 1.1 1.1.1 1.2 1.3 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5
wpfront-scroll-top / includes / settings / html / posts-filter-selection.html
wpfront-scroll-top / includes / settings / html Last commit date
accessibility-settings.html 1 year ago color-picker.html 1 year ago color-picker.scss 1 year ago css-settings.html 1 year ago display-settings.html 1 year ago display-settings.scss 1 year ago filter-settings.html 1 year ago font-awesome-button-settings.html 1 year ago font-awesome-button-settings.scss 1 year ago help-icon.html 1 year ago help-icon.scss 1 year ago image-button-settings.html 1 year ago image-button-settings.scss 1 year ago index.php 1 year ago location-settings.html 1 year ago posts-filter-selection.html 1 year ago posts-filter-selection.scss 1 year ago text-button-settings.html 1 year ago
posts-filter-selection.html
10 lines
1 <div>
2 <input class="post-id-list" id="post-id-list" type="text" :value="modelValue" @input="$emit('update:modelValue', $event.target.value)" />
3 <div class="pages-selection" id="pages-selection">
4 <div class="page-div" v-for="value in postsList">
5 <label>
6 <input type="checkbox" :value="value.key" :id="'chk_pages_selection_' + value.key" v-model="selectedPosts" />{{ value.display }}
7 </label>
8 </div>
9 </div>
10 </div>