Here is an MWE for a document I'm working on, based on code from here, modified with some titlesec options. My goal is to get the references title to appear as a runin title as in all the other sections.
\documentclass{article}
\usepackage[style=nature,backend=bibtex,maxnames=1,uniquelist=false]{biblatex}
\usepackage[colorlinks]{hyperref}
% Some field suppression via options
\ExecuteBibliographyOptions{isbn=false,url=false,doi=false,eprint=false}
% One-paragraph bibliography environment
\defbibenvironment{bibliography}
{\list
{\printtext[labelnumberwidth]{%
\printfield{prefixnumber}%
\printfield{labelnumber}}%
\ifentrytype{article}{% Suppress remaining fields/names/lists here
\clearfield{title}}{}}
{\setlength{\leftmargin}{0pt}%
\setlength{\topsep}{0pt}}%
\renewcommand*{\makelabel}[1]{##1}}
{\endlist}
{\mkbibitem}
% \mkbibitem just prints item label and non-breakable space
\makeatletter
\newcommand{\mkbibitem}{\@itemlabel\addnbspace}
\makeatother
% Add breakable space between bibliography items
\renewcommand*{\finentrypunct}{\addperiod\space}
% et al. string upright (nature style applies \mkbibemph)
\renewbibmacro*{name:andothers}{%
\ifboolexpr{
test {\ifnumequal{\value{listcount}}{\value{liststop}}}
and
test \ifmorenames
}
{\ifnumgreater{\value{liststop}}{1}{\finalandcomma}{}%
\andothersdelim
\bibstring{andothers}}
{}}
\addbibresource{biblatex-examples.bib}
\usepackage{titlesec}
\titlespacing{\section}{0pt}{3pt plus 3pt minus 3pt}{6pt plus 3pt minus 3pt}
\titlespacing{\subsection}{0pt}{0pt plus 0pt minus 0pt}{6pt plus 3pt minus 3pt}
\titlespacing{\subsubsection}{0pt}{0pt plus 0pt minus 0pt}{6pt plus 3pt minus 3pt}
\titleformat{\section}[runin]
{\normalfont\bfseries\large}
{\S\ \thesection.}{0.0cm}{}[:]
\titleformat{\subsection}[runin]
{\normalfont\bfseries\small}
{\S\ \thesubsection.}{0.0cm}{}[:]
\titleformat{\subsubsection}[runin]
{\normalfont\bfseries\small}
{\S\ \thesection.}{0.0cm}{}[.]
\titleformat{\bibliography}[runin]
{\normalfont\bfseries}
{\S\ \thebibliography.}{0.0cm}{}[:]
\begin{document}
\section*{Section title}
Filler text \parencite{bertram,glashow,aksin}.
\printbibliography
\section*{Section title}
Filler text.
\end{document}
As you can see, I tried to apply some titlesec options to make this work, but haven't been able to.

\ifentrytype{article}{% Suppress remaining fields/names/lists here \clearfield{title}}{}back in. Thanks!edit: Apparently you can't code-format in comments.
– Mark Oct 22 '15 at 15:37\ifentrytype{article}directly into the\defbibenvironment{bibliography}, the hook\AtEveryBibitemis normally used to achieve such a thing. – moewe Oct 23 '15 at 07:25\defbibenvironment{bibliography}if you feel more comfortable with that, but if you have a look at questions on this site where people ask about getting rid of fields in the bibliography the solution almost always employs\AtEveryBibitem. – moewe Oct 23 '15 at 13:42