Tagged Questions
0
votes
1answer
36 views
page wordpress add extra unwanted stuff
i want to add this part to wordpress page but every time i add it wordpress add extra stuff that stop it from working properly this is my code
<li data-hovercolor="#e859c5">
...
0
votes
1answer
62 views
Prevent menu from loading in a page template [duplicate]
Possible Duplicate:
Remove navigation from header in custom page template
Is there some way to remove wp_nav_menu in a page template? I can't find anything related to page templates other ...
0
votes
2answers
84 views
Create subpage - filter parent pages list
I have a website here with a lot of content and with the content where is necessary to create pages in hierarchy. But it is uncomfortable to go through the dropdown in the administration with a lot of ...
0
votes
1answer
70 views
create 2 custom columns in page edit in Admin panel
Hey all i have this code here:
if ( !function_exists('AddThumbColumn') && function_exists('add_theme_support') ) {
// for post and page
add_theme_support('post-thumbnails', array( ...
1
vote
1answer
57 views
Is there a way to remove or hide individual pages on the Edit Pages screen?
I want to create a handful of pages that I do not want the client to have access to through the edit pages admin screen.
I do want the pages to have all the normal functionality of pages in other ...
0
votes
1answer
40 views
Add Filter to Ignore a Post/Page or a Number of Post/Pages
Hoping someone can assist but as part of normal WordPress theme searching, how can I add a filter as part of the search to not include certain posts/pages as part of my LOOP?
For example, I want the ...
0
votes
1answer
63 views
Adding a filter to wp_edit_posts_query() to prevent hierarchical display of pages
So I have a Wordpress 3.3.2 installation with around 8k pages in it now. I seemed to have gotten past a threshold that causes edit.php and the page listing in the admin to take about 20 minutes to ...
1
vote
1answer
148 views
What is the optimal way to filter out subpages from admin?
I guess it's always possible to hide them with js, but is there a code snippet out there for query level child page filter? I only want top level pages to remain.
EDIT: my coder came up with it, stay ...
0
votes
1answer
103 views
Add HTML to Page Content
I'm accessing a page content from outside WordPress, in a different webpage. Everything runs fine, I'm using this:
require("wp-load.php");
$page_id = 300;
$data = get_page($page_id);
echo ...
1
vote
2answers
227 views
wp_list_pages() but only show children on the branch you are on
Lets say I have this menu:
Top
|___ Sub 1
|___ Sub Sub 1
|___ Sub Sub 2
|___ Sub Sub 3
|___ Sub Sub 4
|___ Sub 2
...
0
votes
1answer
161 views
Change Home Text
I'm pretty sure this can be done with a filter or some kind of find and replace...but I'm not sure how I would to do it...
I have a page called Home like so:
Screenshot
When the link is displayed ...
0
votes
4answers
2k views
Remove Page Title from Static Frontpage
I'd like to remove the post title from my static frontpage. Just that page.
I've created a child theme from a free Press75 theme. So I'd like to make this change in my child theme's function.php.
I ...