Skip to main content
added 6 characters in body
Source Link

add code in your functions.php

add_action('wp_head', 'hook_in_frontend_head');

$screen = get_current_screen(); if($screen->id == 'your-blog-page-id') { ?> <style> your additionl styles here</style> <?php } }``` 
 add_action('wp_head', 'hook_in_frontend_head'); function hook_in_frontend_head() { $screen = get_current_screen(); if($screen->id == 'your-blog-page-id') { ?> <style> your additionl styles here</style> <?php } } 

add code in your functions.php

add_action('wp_head', 'hook_in_frontend_head');

$screen = get_current_screen(); if($screen->id == 'your-blog-page-id') { ?> <style> your additionl styles here</style> <?php } }``` 

add code in your functions.php

 add_action('wp_head', 'hook_in_frontend_head'); function hook_in_frontend_head() { $screen = get_current_screen(); if($screen->id == 'your-blog-page-id') { ?> <style> your additionl styles here</style> <?php } } 
added 6 characters in body
Source Link

add code in your functions.php

add_action('wp_head', 'hook_in_frontend_head');

function hook_in_frontend_head() { $screen = get_current_screen();

if($screen->id == 'your-blog-page-id') { ?> your additionl styles here

$screen = get_current_screen(); if($screen->id == 'your-blog-page-id') { ?> <style> your additionl styles here</style> <?php } }``` 

add code in your functions.php

add_action('wp_head', 'hook_in_frontend_head');

function hook_in_frontend_head() { $screen = get_current_screen();

if($screen->id == 'your-blog-page-id') { ?> your additionl styles here

add code in your functions.php

add_action('wp_head', 'hook_in_frontend_head');

$screen = get_current_screen(); if($screen->id == 'your-blog-page-id') { ?> <style> your additionl styles here</style> <?php } }``` 
Source Link

add code in your functions.php

add_action('wp_head', 'hook_in_frontend_head');

function hook_in_frontend_head() { $screen = get_current_screen();

if($screen->id == 'your-blog-page-id') { ?> your additionl styles here