Title: guycom's Replies | WordPress.org

---

# guycom

  [  ](https://wordpress.org/support/users/guycom/)

 *   [Profile](https://wordpress.org/support/users/guycom/)
 *   [Topics Started](https://wordpress.org/support/users/guycom/topics/)
 *   [Replies Created](https://wordpress.org/support/users/guycom/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/guycom/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/guycom/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/guycom/engagements/)
 *   [Favorites](https://wordpress.org/support/users/guycom/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How can I alter the entries in the ‘meta’ menu?](https://wordpress.org/support/topic/how-can-i-alter-the-entries-in-the-meta-menu/)
 *  [guycom](https://wordpress.org/support/users/guycom/)
 * (@guycom)
 * [21 years, 3 months ago](https://wordpress.org/support/topic/how-can-i-alter-the-entries-in-the-meta-menu/#post-162586)
 * I have the same problem. what am i missing? Why couldn’t meta be a link set like
   bloglines?
 * Where in here is meta?
 * <?php
    $mode = ‘sidebar’;
 * $standalone = 1;
    require_once(‘admin-header.php’);
 * get_currentuserinfo();
 * if ($user_level == 0)
    die (“Cheatin’ uh ?”);
 * if (‘b’ == $_GET[‘a’]) {
 * ?><!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “[http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt](http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt);
   
   <html xmlns=”[http://www.w3.org/1999/xhtml”&gt](http://www.w3.org/1999/xhtml”&gt);
   <head> <title>WordPress › Posted</title> <meta http-equiv=”Content-Type” content
   =”<?php bloginfo(‘html_type’); ?>; charset=UTF-8″ /> <link rel=”stylesheet” href
   =”wp-admin.css” type=”text/css” /> </head> <body Posted ! [Click here](https://wordpress.org/support/users/guycom/replies/sidebar.php?output_format=md)
   to post again. </body> </html><?php
 * } else {
 * ?><!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “[http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt](http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt);
   
   <html xmlns=”[http://www.w3.org/1999/xhtml”&gt](http://www.w3.org/1999/xhtml”&gt);
   <head> <title>WordPress › Sidebar</title> <meta http-equiv=”Content-Type” content
   =”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘blog_charset’); ?>”/
   > <link rel=”stylesheet” href=”wp-admin.css” type=”text/css” /> <style type=”
   text/css” media=”screen”> form { padding: 3px; } .sidebar-categories { display:
   block; height: 6.6em; overflow: auto; background-color: #f4f4f4; } .sidebar-categories
   label { font-size: 10px; display: block; width: 90%; } </style> </head> <body
   id=”sidebar”> <h1 id=”wphead”>[WordPress](http://wordpress.org)</h1> <form name
   =”post” action=”post.php” method=”POST”> <div><input type=”hidden” name=”action”
   value=”post” /> <input type=”hidden” name=”user_ID” value=”<?php echo $user_ID?
   >” /> <input type=”hidden” name=”mode” value=”sidebar” /> Title: <input type=”
   text” name=”post_title” size=”20″ tabindex=”1″ style=”width: 100%;” />
 * Categories:
    <span class=”sidebar-categories”> <?php dropdown_categories(); ?
   > </span>
 * Post:
    <textarea rows=”8″ cols=”12″ style=”width: 100%” name=”content” tabindex
   =”2″></textarea>
 *  <input name=”saveasdraft” type=”submit” id=”saveasdraft” tabindex=”9″ value=”
   Save as Draft” />
    <input name=”publish” type=”submit” id=”publish” tabindex=”
   6″ style=”font-weight: bold;” value=”Publish” />
 * </div>
    </form>
 * </body>
    </html> <?php } ?>

Viewing 1 replies (of 1 total)