How to Set height of the categories meta box in post dashboard of WordPress?

Say we are trying to modify the height of the categories meta box of www.glassescanada.com, edit functions.php, which is under: https://www.glassescanada.com/wp-includes/, add the following code at the end of  functions.php function change_cat_meta_postbox_css(){ ?> <style type=”text/css”> .wp-tab-panel, .categorydiv div.tabs-panel, .customlinkdiv div.tabs-panel,… Read moreHow to Set height of the categories meta box in post dashboard of WordPress?

How to Set Default Post Title?

Modify the file named functions.php which is under your theme, add the following code at the file: //Default Post Title function my_default_title_filter() { global $post_type; if (‘post’ == $post_type) { return ‘Eyeglasses ‘; } } add_filter(‘default_title’, ‘my_default_title_filter’); Here the default… Read moreHow to Set Default Post Title?

How to Disable Auto Embed Script for WordPress 5.4+ – wp-embed.min.js

From the post body we can find the following code: <blockquote class=”wp-embedded-content” data-secret=”Gp5UKmVoxk”><a href=”https://www.cheapgalsses123.com/”>Cheap Glasses</a></blockquote> <iframe class=”wp-embedded-content” style=”position: absolute; clip: rect(1px, 1px, 1px, 1px);” title=”“Welcome” — Asia Actual” src=”https://www.cheapgalsses123.com/embed/#?secret=Gp5UKmVoxk” width=”600″ height=”338″ frameborder=”0″ marginwidth=”0″ marginheight=”0″ scrolling=”no” sandbox=”allow-scripts” data-secret=”Gp5UKmVoxk”></iframe> And we can… Read moreHow to Disable Auto Embed Script for WordPress 5.4+ – wp-embed.min.js