Tagged Questions
0
votes
1answer
63 views
Page Title repeating in Wordpress
I am a newbie in WordPress and our website page titles are repeating. That is the first problem. The second problem appears to be that there is a space missing between the repetition.
I have attached ...
-2
votes
2answers
251 views
How do I remove blog entries from home page Twenty Eleven child theme?
I have been wrestling with this for some time. I've read the documentation about creating a separate home page and posts page, and so on, and I have managed to create a landing page, and a blog.
...
0
votes
1answer
60 views
How to get post object on blog template
I have a big issue on catching attributes from global $post_object in a page template file.
I have a Template Name: Blog Page which is template-blog.php
On that page I use the current page permalink ...
0
votes
1answer
57 views
Putting a Category of posts under a Page
I have a website say mysite.com and there is a blog mysite.com/blog.When i post a new post under blog category its appears like mysite.com/newpost.I want the posts under blog category to be displayed ...
0
votes
1answer
63 views
How do i create a list-posts-page?
I'm trying to create the actual "blog" page that lists all the posts. It seems like such a basic thing, but i can't find out how to do it.
Do i create a page and assign it a special template? If i do ...
0
votes
1answer
132 views
How can I cycle posts with a #next and #previous script?
So, I'm having trouble trying to figure out how I would go about coding this kind of implementation for a Wordpress site. I have the first part done but am a little confused on how I would go about ...
4
votes
3answers
252 views
How to embed page content in a blog post
I've built an HTML table that is posted on a page in my site, and I'd like to use that same content inside a blog post (something of an announcement of the table's publication). The table is likely to ...
0
votes
1answer
178 views
Why won't pagination work?
I am using a page template with code to display all blog posts:
<?php /* Template Name: Blog */ ?>
<?php get_header(); ?>
<div id="main">
<?php
// ACF Page number variable
...
0
votes
1answer
120 views
direct some posts to only appear on a specific page
I have a blog at JonCrowell.org. When I add a new post, it appears on the home page. I have created a new page called "Technical Notes." I would like to be able to choose whether a new post that I ...
0
votes
1answer
64 views
add html to static posts page. [closed]
I'm using static page for the front page display. I also have a page listed as posts page. I would like to know how to add html to this page. When I do add this it doesn't appear.
<div ...
0
votes
2answers
725 views
Wordpress Query Posts From Category Post on Static Page
So I'm trying to query some posts from 1 category only and it does seem to be working. I tried get_post() also but no luck and after awhile I just caved and used query_posts (which is apparently bad ...
2
votes
2answers
199 views
Sitewide page on all the blogs in the network
I have WordPress multisite installed. And i need to make it so that a page called (Company Ideas) on the main blog is added to new blogs created on the network.
So once someone registers a new blog. ...
0
votes
2answers
102 views
Is there a template tag/function for getting the URL (or slug or name or ID) of the blog page when using a “static” front page
Done some reasonable searching for this and don't think it's been asked before.
I've got a site which I'm developing a custom template/theme for. The site will use a page as the front page (rather ...
0
votes
1answer
192 views
Displaying the blog entries in a Page (using get_posts to retrieve the posts)?
I made a page called blog.php which will store my blog entries, all the other pages have a custom post type called "Page Content" (for static content). I wanted to make a heading in this blog page ...