так вот если выбирать все записи или что то аналогичное то я смогу в редактировании записи простым чек боксом выключить нужный мне блок , вся соль в том что опция привяжется ко всем записям , что не логично .
Со страницами все проще , можно создать отдельный шаблон и задать определенный id ACF
<?php
/*
Template Name: Full-width layout
Template Post Type: post
*/
// Page code here...
Очень часто бывает такое что приду к кому либо в гости и надо с его ПК отправить себе какой то текст
<section class="section">
<div class="section__inner container">
<div class="text-block">
<h2>Lorem ipsum.</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officiis sequi nam temporibus quibusdam possimus repudiandae veritatis, in autem! Repellat maiores quia neque aspernatur libero consequatur quod provident, explicabo voluptatum dolor!</p>
</div>
</div>
</section>
body {
margin: 0;
font: 100%/1.4 sans-serif;
}
.container {
margin-left: auto;
margin-right: auto;
max-width: 960px;
}
.section {
position: relative;
height: 100vh;
color: #FFF;
background-color: #FFC056;
}
.section::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 50%;
background: url("http://placeimg.com/400/400") no-repeat 50% / cover;
}
.section__inner {
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
}
.text-block {
box-sizing: border-box;
padding: 2em;
width: 50%;
margin-left: 50%;
}
$(function () {
$(".next").click(function(){
var width = $(".progress-bar").css("width");
width = parseInt(width) * 1.1;
$(".progress-bar").css("width", width + "px");
});
});