Deprecated: YoastSEO_Vendor\Symfony\Component\DependencyInjection\Container::__construct(): Implicitly marking parameter $parameterBag as nullable is deprecated, the explicit nullable type must be used instead in /home/nubelus/sharedove/adisjugo/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Container.php on line 60
Development Archives - Page 5 of 16 - Adis Jugo blog
Select Page

Programmatically creating MMS (Taxonomy) fields

It’s a common task to create SharePoint Fields (Columns) through code, and to deploy it to the SharePoint server as a feature. This process is actually quite an easy one: there is Visual Studio item called “Site Column” which you can add to the SharePoint Solution. It...

List SharePoint 2013 site feed programmatically

In the last post, I have shown how to list the user’s personal SharePoint 2013 feed. Here is the code snipped for getting the data from the site feed: using (SPSite site = new SPSite(siteName)) { using (SPWeb web = site.OpenWeb()) { SPServiceContext context =...