Tagged Questions
-1
votes
1answer
16 views
How to add character to content of post?
0 down vote favorite
In per posts, there are "oo/x/".
How to add "0" before "x" if length(x) <10 ?
Example:
x=12345678 ; length(x) = 8, so add "00" before x ===> x=0012345678
x=1234567 ...
-1
votes
0answers
17 views
Wordpress posts showing in all categories [closed]
I came across one post for this topic but it doesn't answer my problem. http://www.daghealth.com/publications is our blog page which is showing all the posts in every category. Trying to find a fix ...
0
votes
0answers
21 views
ACF, custom field that retreives posts, pages and categories
Using Advanced Custom Fields (http://advancedcustomfields.com) and acf / load_field I'm writing a function for creating a custom field that will list both posts, pages and categories. While Page Link ...
0
votes
0answers
37 views
display sub categories assoccited with each post in a category archive page.
i have wordpress blog with many posts. each posts associated with many categories and sub categories. i want to display sub categories assoccited with each post in a category archive page.
for ...
1
vote
0answers
113 views
Display Subcategories and post from a Parent Category
So I have this issue regarding the loop within wordpress.
I have the following structure in my site:
Parent Category 1
Child category 1
Child category 2
Parent Category 2
Child category 1
Child ...
0
votes
1answer
373 views
Displaying posts from specific categories with the AheadWorks blog extension for Magento
I'm using the AheadWorks blog extension for Magento, and my blog pages are working fine. But I want excerpts of my latest posts from certain categories to appear on my home page. I've successfully ...
0
votes
0answers
7 views
How do I choose a set of link categories to display, per post?
I currently have several different link categories with links within them. My goal is to have the edit-screen of any post display these link categories so that I can select a category of links to ...
0
votes
1answer
127 views
Wordpress admin: set category from variable instead of checkbox
The only way to set a category to a new post seems to be to select the appropriate one via a check-box before submitting it.
At best, you can set a default category as an option in case no box has ...
0
votes
3answers
134 views
How to get the number of posts that located in 2 specific categories at the same time in WordPress
I have tried to use this code:
$terms = get_terms('translates_category', 'include=220,238');
But it returns an array with two separate objects:
Array
(
[0] => stdClass Object
(
...
0
votes
1answer
60 views
WordPress: Showing posts by categories/tags on the index page
Is it possible to show posts by categories/tags on the index page instead of taking the user to the tag.php and category.php pages?
For example, when the user clicks the 'Uncategorized' category, I ...
0
votes
1answer
277 views
code igniter posts and categories
I'm doing a codeigniter project, I am new to code igniter but now understand it to a certain degree. Im building a simple application for uni and I have an issue with trying to show which items are in ...
1
vote
1answer
206 views
How to get pagination working with “Pending” Posts
I'm working on a site that allows users to browse through pending posts/content on the front-end.
However, I can't seem to get pagination working with those posts. I've got a custom query that brings ...
0
votes
1answer
167 views
Forum MySQL Category, Thread, Post
I know there's a bunch of threads similar to this and I looked over many, but was unable to find a solution. So, I have one table called "forum" that houses my Categories (num_type=0), Threads ...
0
votes
3answers
2k views
Wordpress: Filter/Sort posts within a page?
If I have a parent category, say, "Travel" with subcategories "belgium", "netherlands", "japan", etc., how can I create a page with all of the posts from the categories above?
Then, I need users to ...
0
votes
1answer
737 views
Wordpress custom QUERY
I need to do select from Post table, each post is related to one category and on tag.
I need to select specific tag/s and/or category/s.
Terms table have custom field "menu_order", it is used to set ...
0
votes
2answers
319 views
Categories Listing and Highlighting current category item
My query is on Wordpress and related to categories.
I have a set of categories for my posts: All, Cat-a, Cat-b and Cat-c.
a. When I click on the link to my posts page, I want to show an archive for ...
0
votes
0answers
753 views
Using Wordpress as a CMS: how to build a product catalogue into my site
Im building a site, with a product catalogue. I have separated sections into pages, home, contact, info, and products.
Within products page, I nested pages each one with its own template and code ...
0
votes
1answer
111 views
using wordpress category plugin - how do i list in order=desc?
I'm using this plugin
http://watershedstudio.com/portfolio/software-development/wordpress-category-posts-plugin/
that uses this php
works just fine but it lists the category posts alphabetically ...
1
vote
1answer
636 views
how do i get only 1 post from each category in wordpress
i have a category named news and many subcategories inside it.
What i wanna do is to get only 1 posts(newest) from each of those sub categories(including category title, post title, attachment image).
...