Archives: Snippets
Sticky Posts on Category Pages
add_action(‘pre_get_posts’, function($query) { if (!is_admin() && $query->is_main_query() && is_category()) { $sticky_posts = get_option(‘sticky_posts’); if (!empty($sticky_posts)) { add_filter(‘posts_orderby’, function($orderby, $query) use ($sticky_posts) { if (!is_admin() && $query->is_main_query() && is_category()) { global $wpdb; $sticky_list = implode(‘,’, array_map(‘intval’, $sticky_posts)); return “FIELD({$wpdb->posts}.ID, {$sticky_list}) DESC,…Continue reading
Fix Divi Post Content Width
/*set the width of the rows inside the Post Content module*/ .et-db #et-boc .et-l .et-l–post .et_builder_inner_content .et_pb_row { width: 100%; }Continue reading
Untitled Snippet
Code
Xskyverse
Untitled Snippet
For yt monetization
connect site to google
Increase Dropdown Menu Width – Divi Themes
.et_pb_menu ul.sub-menu { width: 300px; /* Adjust this value to your desired width */ } /* Optional: Adjust width of individual list items and links within the dropdown */ .et_pb_menu ul.sub-menu li { width: 100%; /* Ensures list items take…Continue reading