From which wordpress file i can change this page's layout

80 Views Asked by At

I am currently using wordpress for the website development and i want to change this page's formatting which is having url

http://www.selfmadesounds.com/dev3/?catid=featured&slg=featured3

I need to change this page's formatting such that i can exclude out the extra things from this page.

2

There are 2 best solutions below

1
On

You have to check the Wordpress Template Hierarchy, a quick guess would be single.php from the active theme, but there is no way to be sure other than actually searching in the theme

8
On

you are probably looking for category.php.

If you are a beginner with templating / themes / wp in general, you can simply search for class="category" and add a small string INSIDE the div in all of the template files where the search hit, one by one , and see which one is the one you look for .

You can insert <? php echo 'This is my page'; > or simply insert XXXXXX.

but just make sure you are not doing so in header.php, sidebar.php or footer.php - those will in all likelihood will appear on ALL your pages . ( also functions.php is to be excluded , but not in all cases ..)

but like others said, you should read the codex page about template hierarchy. it can also be any other filename (custom-loops.php file, custom-category-filename.php etc. depending on theme.

Edit I

I think you are mixing a bit of concepts here .

this line :

http://www.selfmadesounds.com/dev3/?catid=featured&slg=featured3

Is not a page, it is a URL with get parameters , and it represents a query for category : Featured with Slug : featured3 .

As for itself , it is NOT a page , it is a Query ( and i suspect that it is a plugin or theme related ). The query later produces , or renders a page .

At any rate , my advice still stands , Put a dummy code inside all the template pages and see which ones is your page .

For the rest - if you will supply more info or code , people could help more .