When I get the fields property for a blog list, it returns empty.

$SiteURL = "Blog site URL here"

$web = Get-SPWeb $SiteURL

foreach($field in $web.Fields)
{

  Write-Host $field
}

But when I go to site columns in site settings I see many fields with the source being the parent site.

Can someone help me with adding an existing site column to the Post list of a Blog site ?

Thanks

share|improve this question
up vote 3 down vote accepted

I got it. I referenced the parent site Web and retrieved the list from that site and added to the Posts List in Blog site

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.