How to remove version and thank you message from the admin footer

I’ve used following codes and no luck 1 //Hide admin footer from admin function change_footer_admin () { return ‘ ‘; } add_filter(‘admin_footer_text’, ‘change_footer_admin’, 9999); function change_footer_version() { return ‘ ‘; } add_filter( ‘update_footer’, ‘change_footer_version’, 9999); 2 function wpbeginner_remove_version() { return ”; } add_filter(‘the_generator’, ‘wpbeginner_remove_version’); 3 function my_footer_shh() { remove_filter( ‘update_footer’, ‘core_update_footer’ ); } add_action( ‘admin_menu’, … Read more

CSS to make HTML page footer stay at bottom of the page with a minimum height, but not overlap the page

I have the following page (deadlink: http://www.workingstorage.com/Sample.htm ) that has a footer which I can’t make sit at the bottom of the page. I want the footer to stick to the window bottom when the page is short and the screen is not filled, and stay at the document end and move down as normal … Read more

My add_action (wp_footer, ‘method’) is not calling?

In my themes functions.php file I have put: add_action(‘wp_footer’, ‘method’); function method() { echo “this is being called”; die(); } My wordpress footer.php file looks like this: <?php wp_footer(); ?> </body> </html> What could be the reason my add_action hook is not being called? I can provide additional code or information if needed. EDIT: Instead … Read more

How to use HTML to print header and footer on every printed page of a document?

Is it possible to print HTML pages with custom headers and footers on each printed page? I’d like to add the word “UNCLASSIFIED” in Red, Arial, size 16pt to the top and bottom of every printed page, regardless of the content. To clarify, if the document was printed onto 5 pages, each page should have … Read more

How to add javascript just before the closing body tag in the footer of WordPress

I’m following some of the other people’s advice here about adding my js file before the closing body tag but it doesn’t seem to work for me. If someone would be so kind as to check this for me please? <?php /*load the js file into the footer*/ function myscript() { if( wp_script_is( ‘jquery’, ‘done’ … Read more

How To Remove WordPress Version From The Admin Footer

Is there anyway to remove version number from the right side of WordPress admin footer? I know this code will add some text before the version number, but it will not remove it: function change_footer_version() { echo ‘Anything’; } add_filter( ‘update_footer’, ‘change_footer_version’, 9999 ); And the following code will do nothing: function change_footer_version() { return … Read more