Viewing 4 replies - 1 through 4 (of 4 total)
  • I have absolutely no idea what you are asking.

    Thread Starter Martin

    (@animaacija)

    It is , i need a tip there to render a DivID’s content of page, i call with link. Simple. Not all page but that selected part – there in picture.

    So it will be – user has acces to edit posts or something through front end. I will use lightwindows.js

    got it ? please i see this is high coding question..

    Moderator bcworkz

    (@bcworkz)

    My understanding is you wish to display just the posts table portion of the posts admin panel on a frontend page?

    If so, there is not a template tag or function you can call to easily do this. Your page template will need to generate the table on it’s own. You could start by examining how the admin panel table is generated in wp-admin/edit.php. Unfortunately, it uses private methods. Your code could extend the class WP_List_Table to do something similar. Or you could just start from the beginning and create your own table structure.

    You’ll also need to figure out the CSS, but if you can crate the table structure, this will be trivial.

    Thread Starter Martin

    (@animaacija)

    Good day there,

    This support made me to result. The most hardcore coding poetry.

    This is what i did.

    • Added three plugins: Ultimate Admin Bar, ToolBar Removal – RC, WP Admin Theme.
    • In WP Admin Theme updated css via “edit plugin” [whateva]

      // {display:none;}

      #wphead {display:none;}

      #adminmenu ul {display:none;}

      #adminmenu2 ul {display:none;}

      #zeitgeist {display:none;}

      #footer {display:none;}

      #adminmenuback {display:none;}

      #adminmenu {display:none;}

      .wrap h2 {display:none;}

      #wpadminbar {display:none;}

      // and

      #wptbr {display:none;}

      My code, feel free to copy.

    • And before that saved necessary links to make front end admin menu
    • Hope this helps any body to save time and earn money..

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Render a part ? .php’ is closed to new replies.