Manipulating wp_head function
-
Hi everyone,
I’m using the all-in-one-seo plugin and what I’m wanting to do is move that to the top of the wp_head menu when it renders the html. Currently the wp_head seems to display like this:
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.example.com/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.example.com/wp-includes/wlwmanifest.xml" /> <script type='text/javascript' src='https://www.example.com/wp-includes/js/jquery/jquery.js?ver=1.2.3'></script> <meta name="generator" content="WordPress 2.5.1" /> <!-- all in one seo pack 1.4.6.8 [221,285] --> <meta content="index, follow" name="robots" /> <meta name="description" content="description" /> <meta name="keywords" content="lots, of, key, words" />
but I’m wanting to turn it round so it looks like this instead…
<!-- all in one seo pack 1.4.6.8 [221,285] --> <meta content="index, follow" name="robots" /> <meta name="description" content="description" /> <meta name="keywords" content="lots, of, key, words" /> <!-- end of all in one seo --> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.example.com/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.example.com/wp-includes/wlwmanifest.xml" /> <script type='text/javascript' src='https://www.example.com/wp-includes/js/jquery/jquery.js?ver=1.2.3'></script> <meta name="generator" content="WordPress 2.5.1" />
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Manipulating wp_head function’ is closed to new replies.