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 .