get the current page id in wordpress code example
Example 1: get the current page id in wordpress
$page_id = get_queried_object_id();
Example 2: target wordpress page id
body { background-color: red; }
.page-id-1 body, .page-id-2 body , .page-id-3 body {
background-color: green!important;
}