how to change link of some wordpress pages

I’ve made templates for the pages of my wordpress site such as: singup,signin,suggestions. Default wordpress pages link is as follows: doamin.com/signup/ or doamin.com/signin/ or doamin.com/suggestions/ I want to just link to this page to be changed as follows: doamin.com/panel/signup/ or doamin.com/panel/signin/ or doamin.com/panel/suggestions/ Using what code can do this? 1 Answer 1 Create a blank … Read more

Hiding Menu From Specific Pages

I’m trying to hide the menu page completely from this page: http://ultimate-templates.com/splash-page I’m using Divi 3.0, and have tried – through online tutorials – to hide it using the following in my styles css sheet: .page-id-27820 top-menu-nav { display: none important; } That didn’t do anything, aside from making the menu look a little weird … Read more

How To Keep Posts from Being Displayed Two or More Times on My Homepage? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third party plugins and themes are off topic, they are better asked about at their developers’ support routes. Closed 5 … Read more

Is there a better way to programmatically insert content into a page?

During activation of the plugin I’m writing, I insert a custom page. I can add post_content using the wp_insert_post command, which seems like a reasonable way to add a limited amount of content. For example, something simple as part of an array could be: ‘post_content’='<h1> Header </h1>’ However, I would like to add a full … Read more